66676869707172
} // Implementation methods // ------------------------------------------------------------------------- protected TextWireFormat createWireFormat() { return new XStreamWireFormat(); }
196197198199200201202
protected BlockingQueueTransport createTransportChannel() { return new BlockingQueueTransport(new LinkedBlockingQueue<Object>()); } protected TextWireFormat createWireFormat() { return new XStreamWireFormat(); }
64656667686970
44454647484950
protected TextWireFormat asTextWireFormat(WireFormat wireFormat) { if (wireFormat instanceof TextWireFormat) { return (TextWireFormat) wireFormat; } log.trace("Not created with a TextWireFormat: " + wireFormat); return new XStreamWireFormat(); }
182183184185186187188
protected BlockingQueueTransport createTransportChannel() { return new BlockingQueueTransport(new ArrayBlockingQueue(10)); } protected TextWireFormat createWireFormat() { return new XStreamWireFormat(); }
65666768697071
protected TextWireFormat asTextWireFormat(WireFormat wireFormat) { if (wireFormat instanceof TextWireFormat) { return (TextWireFormat)wireFormat; } LOG.trace("Not created with a TextWireFormat: " + wireFormat); return new XStreamWireFormat(); }
61626364656667