238239240241242243244
protected BlockingQueueTransport createTransportChannel() { return new BlockingQueueTransport(new LinkedBlockingQueue<Object>()); } protected TextWireFormat createWireFormat() { return new XStreamWireFormat(); }
244245246247248249250
62636465666768
} // Implementation methods // ------------------------------------------------------------------------- protected TextWireFormat createWireFormat() { return new XStreamWireFormat(); }
61626364656667
protected TextWireFormat asTextWireFormat(WireFormat wireFormat) { if (wireFormat instanceof TextWireFormat) { return (TextWireFormat)wireFormat; } LOG.trace("Not created with a TextWireFormat: " + wireFormat); return new XStreamWireFormat(); }
58596061626364
66676869707172
196197198199200201202
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(); }