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(); }