public PubnubStandInOperation(string name, PubnubCredentials credentials, string hostChannel) : base(name)
        {
            var transceiver = new PubnubStandInTransceiver(credentials, hostChannel);

            _standInOperation = new StandInOperation(name, transceiver, transceiver);
        }
Exemplo n.º 2
0
        public WcfStandInOperation(string name, string standInEndpointAddress, string remoteEndpointAddress) : base(name)
        {
            var transceiver = new WcfStandInTransceiver(standInEndpointAddress, remoteEndpointAddress);

            _standInOperation = new StandInOperation(name, transceiver, transceiver);
        }
Exemplo n.º 3
0
 public WcfStandInOperation(string name, string standInEndpointAddress, string remoteEndpointAddress)
     : base(name)
 {
     var transceiver = new WcfStandInTransceiver(standInEndpointAddress, remoteEndpointAddress);
     _standInOperation = new StandInOperation(name, transceiver, transceiver);
 }
 public PubnubStandInOperation(string name, PubnubCredentials credentials, string hostChannel)
     : base(name)
 {
     var transceiver = new PubnubStandInTransceiver(credentials, hostChannel);
     _standInOperation = new StandInOperation(name, transceiver, transceiver);
 }