Akka.Interfaced.SlimSocket.Client.ChannelFactory.Create C# (CSharp) Method

Create() public method

public Create ( ) : IChannel
return IChannel
        public IChannel Create()
        {
            return Create(null);
        }

Same methods

ChannelFactory::Create ( string address ) : IChannel

Usage Example

        public IChannel CreateChannel(string address = null)
        {
            var newChannel = ChannelFactory.Create(address);

            OnChannelCreated(newChannel);
            return(newChannel);
        }
All Usage Examples Of Akka.Interfaced.SlimSocket.Client.ChannelFactory::Create