Apache.NMS.ActiveMQ.Transport.Tcp.TcpTransportFactory.DoCreateTransport C# (CSharp) Method

DoCreateTransport() protected method

Override in a subclass to create the specific type of transport that is being implemented.
protected DoCreateTransport ( Uri location, Socket socket, IWireFormat wireFormat ) : ITransport
location System.Uri
socket Socket
wireFormat IWireFormat
return ITransport
        protected virtual ITransport DoCreateTransport(Uri location, Socket socket, IWireFormat wireFormat )
        {
            return new TcpTransport(location, socket, wireFormat);
        }