public PubnubOperationHost(IFlowRuntime runtime, PubnubCredentials credentials, string channel)
        {
            var transceiver = new PubnubHostTransceiver(credentials, channel);

            _operationHost = new OperationHost(runtime, transceiver, transceiver);
        }
        public WcfOperationHost(IFlowRuntime runtime, string endpointAddress)
        {
            var transceiver = new WcfHostTransceiver(endpointAddress);

            _operationHost = new OperationHost(runtime, transceiver, transceiver);
        }
 public PubnubOperationHost(IFlowRuntime runtime, PubnubCredentials credentials, string channel)
 {
     var transceiver = new PubnubHostTransceiver(credentials, channel);
     _operationHost = new OperationHost(runtime, transceiver, transceiver);
 }
示例#4
0
 public WcfOperationHost(IFlowRuntime runtime, string endpointAddress)
 {
     var transceiver = new WcfHostTransceiver(endpointAddress);
     _operationHost = new OperationHost(runtime, transceiver, transceiver);
 }