blob: 9360016430f46bd6130f826e9ee79a577e09fc5a [file] [log] [blame]
class TestApi {
$pb.RpcClient _client;
TestApi(this._client);
$async.Future<SomeReply> aMethod($pb.ClientContext ctx, SomeRequest request) {
var emptyResponse = SomeReply();
return _client.invoke<SomeReply>(ctx, 'Test', 'AMethod', request, emptyResponse);
}
$async.Future<$0.AnotherReply> anotherMethod($pb.ClientContext ctx, $0.EmptyMessage request) {
var emptyResponse = $0.AnotherReply();
return _client.invoke<$0.AnotherReply>(ctx, 'Test', 'AnotherMethod', request, emptyResponse);
}
}