212213214215216217218
protected BlockingQueueTransport createTransportChannel() { return new BlockingQueueTransport(new LinkedBlockingQueue<Object>()); } protected TextWireFormat createWireFormat() { return new XStreamWireFormat(); }
61626364656667
} // Implementation methods // ------------------------------------------------------------------------- protected TextWireFormat createWireFormat() { return new XStreamWireFormat(); }
56575859606162
protected TextWireFormat asTextWireFormat(WireFormat wireFormat) { if (wireFormat instanceof TextWireFormat) { return (TextWireFormat)wireFormat; } LOG.trace("Not created with a TextWireFormat: " + wireFormat); return new XStreamWireFormat(); }
244245246247248249250
66676869707172