this(inputStream, dispatch, executorFactory, idGenerator, DEFAULT_BUFFER_SIZE);
}
public DaemonClientInputForwarder(InputStream inputStream, Dispatch<? super IoCommand> dispatch,
ExecutorFactory executorFactory, IdGenerator<?> idGenerator, int bufferSize) {
TextStream handler = new ForwardTextStreamToConnection(dispatch, idGenerator);
forwarder = new InputForwarder(inputStream, handler, executorFactory, bufferSize);
}