Beispiel #1
0
        public TillerClient(Func <Stream> stream)
        {
            StreamCallInvoker invoker = new StreamCallInvoker(stream);

            this.client = new ReleaseServiceClient(invoker);
        }
Beispiel #2
0
 public TillerClient(Channel channel)
 {
     this.client = new ReleaseServiceClient(channel);
 }
Beispiel #3
0
 public TillerClient(CallInvoker callInvoker)
 {
     this.client = new ReleaseServiceClient(callInvoker);
 }
Beispiel #4
0
 public TillerClient(string target = "127.0.0.1:44134")
 {
     this.client = new ReleaseServiceClient(new Channel(target, ChannelCredentials.Insecure));
 }