190191192193194195196
protected HttpServerTransportChannel createTransportChannel() { return new HttpServerTransportChannel(new BoundedLinkedQueue(10)); } protected TextWireFormat createWireFormat() { return new XStreamWireFormat(); }
181182183184185186187
87888990919293
// Implementation methods //------------------------------------------------------------------------- protected TextWireFormat createWireFormat() { return new XStreamWireFormat(); }
59606162636465
protected TextWireFormat asTextWireFormat(WireFormat wireFormat) { if (wireFormat instanceof TextWireFormat) { return (TextWireFormat) wireFormat; } log.trace("Not created with a TextWireFromat: " + wireFormat); return new XStreamWireFormat(); }
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