/**
* Construct basic helpers
* @param wireFormat
*/
protected TcpTransportChannel(WireFormat wireFormat) {
this.wireFormatLoader = new WireFormatLoader(wireFormat);
closed = new SynchronizedBoolean(false);
started = new SynchronizedBoolean(false);
// there's not much point logging all exceptions, lets just keep a few around
exceptionsList = new BoundedLinkedQueue(10);
outboundLock = new Object();