Exemplo n.º 1
0
func (this rpcWhoamiServiceWebClient) Whoami(in *Empty, out *YouAre) error {
	return webrpc.Post(this.protocol, this.remote, "/WhoamiService/Whoami", in, out)
}
Exemplo n.º 2
0
func (this rpcAddServiceWebClient) Add(in *AddMessage, out *SumMessage) error {
	return webrpc.Post(this.protocol, this.remote, "/AddService/Add", in, out)
}
Exemplo n.º 3
0
func (this rpcOffloadServiceWebClient) Compute(in *DataSet, out *ResultSet) error {
	return webrpc.Post(this.protocol, this.remote, "/OffloadService/Compute", in, out)
}
Exemplo n.º 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)
}
Exemplo n.º 6
0
func (this rpcLearnerWebClient) Learn(in *Proposal, out *Ack) error {
	return webrpc.Post(this.protocol, this.remote, "/Learner/Learn", in, out)
}
Exemplo n.º 7
0
func (this rpcLearnerWebClient) Lookup(in *File, out *File) error {
	return webrpc.Post(this.protocol, this.remote, "/Learner/Lookup", in, out)
}
Exemplo n.º 8
0
func (this rpcAcceptorWebClient) Accept(in *Proposal, out *Ack) error {
	return webrpc.Post(this.protocol, this.remote, "/Acceptor/Accept", in, out)
}
Exemplo n.º 9
0
func (this rpcAcceptorWebClient) Propose(in *Proposal, out *Promise) error {
	return webrpc.Post(this.protocol, this.remote, "/Acceptor/Propose", in, out)
}