mirror of https://github.com/apache/activemq.git
only use the wire format negociator if needed.
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@358216 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d0e9fa2990
commit
b6eb3a6319
|
@ -19,6 +19,7 @@
|
||||||
package org.activemq.transport.tcp;
|
package org.activemq.transport.tcp;
|
||||||
|
|
||||||
import org.activeio.command.WireFormat;
|
import org.activeio.command.WireFormat;
|
||||||
|
import org.activemq.openwire.OpenWireFormat;
|
||||||
import org.activemq.transport.MutexTransport;
|
import org.activemq.transport.MutexTransport;
|
||||||
import org.activemq.transport.ResponseCorrelator;
|
import org.activemq.transport.ResponseCorrelator;
|
||||||
import org.activemq.transport.Transport;
|
import org.activemq.transport.Transport;
|
||||||
|
@ -68,7 +69,9 @@ public class TcpTransportFactory extends TransportFactory {
|
||||||
// transport = new InactivityMonitor(transport,
|
// transport = new InactivityMonitor(transport,
|
||||||
// temp.getMaxInactivityDuration(), activityMonitor.getReadCounter(),
|
// temp.getMaxInactivityDuration(), activityMonitor.getReadCounter(),
|
||||||
// activityMonitor.getWriteCounter());
|
// activityMonitor.getWriteCounter());
|
||||||
transport = new WireFormatNegotiator(transport, format, tcpTransport.getMinmumWireFormatVersion());
|
if( format instanceof OpenWireFormat )
|
||||||
|
transport = new WireFormatNegotiator(transport, format, tcpTransport.getMinmumWireFormatVersion());
|
||||||
|
|
||||||
transport = new MutexTransport(transport);
|
transport = new MutexTransport(transport);
|
||||||
transport = new ResponseCorrelator(transport);
|
transport = new ResponseCorrelator(transport);
|
||||||
return transport;
|
return transport;
|
||||||
|
|
Loading…
Reference in New Issue