this.connectionIdleTimeoutInMs = connectionIdleTimeout;
}
public TelnetTaskProcessor(Socket connection) {
this.connection = connection;
this.socketReader = new SocketReader(connection);
this.socketWriter = new SocketWriter(connection);
this.commandFactory = new CommandFactory();
this.connectionIdleTimeoutInMs = DEFAULT_CONNECTION_IDLE_TIMEOUT;
}