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