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