Пример #1
0
func (this rpcWhoamiServiceWebClient) Whoami(in *Empty, out *YouAre) error {
	return webrpc.Post(this.protocol, this.remote, "/WhoamiService/Whoami", in, out)
}
Пример #2
0
func (this rpcAddServiceWebClient) Add(in *AddMessage, out *SumMessage) error {
	return webrpc.Post(this.protocol, this.remote, "/AddService/Add", in, out)
}
Пример #3
0
func (this rpcOffloadServiceWebClient) Compute(in *DataSet, out *ResultSet) error {
	return webrpc.Post(this.protocol, this.remote, "/OffloadService/Compute", in, out)
}
Пример #4
0
func (this rpcConcatServiceWebClient) Concat(in *Args, out *Return) error {
	return webrpc.Post(this.protocol, this.remote, "/ConcatService/Concat", in, out)
}
func (this rpcRequestServiceWebClient) Request(in *RequestMessage, out *RequestACKMessage) error {
	return webrpc.Post(this.protocol, this.remote, "/RequestService/Request", in, out)
}
Пример #6
0
func (this rpcLearnerWebClient) Learn(in *Proposal, out *Ack) error {
	return webrpc.Post(this.protocol, this.remote, "/Learner/Learn", in, out)
}
Пример #7
0
func (this rpcLearnerWebClient) Lookup(in *File, out *File) error {
	return webrpc.Post(this.protocol, this.remote, "/Learner/Lookup", in, out)
}
Пример #8
0
func (this rpcAcceptorWebClient) Accept(in *Proposal, out *Ack) error {
	return webrpc.Post(this.protocol, this.remote, "/Acceptor/Accept", in, out)
}
Пример #9
0
func (this rpcAcceptorWebClient) Propose(in *Proposal, out *Promise) error {
	return webrpc.Post(this.protocol, this.remote, "/Acceptor/Propose", in, out)
}