You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -158,6 +158,10 @@ class ExecutionflowInputAPIClient extends $grpc.Client {
|
||||
return $createUnaryCall(_$renotified, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.ExecutionflowSanitisedResponse> sanitised($0.ExecutionflowSanitisedRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$sanitised, request, options: options);
|
||||
}
|
||||
|
||||
// method descriptors
|
||||
|
||||
static final _$created = $grpc.ClientMethod<$0.ExecutionflowCreatedRequest, $0.ExecutionflowCreatedResponse>(
|
||||
@@ -284,6 +288,10 @@ class ExecutionflowInputAPIClient extends $grpc.Client {
|
||||
'/api.ExecutionflowInputAPI/Renotified',
|
||||
($0.ExecutionflowRenotifiedRequest value) => value.writeToBuffer(),
|
||||
$0.ExecutionflowRenotifiedResponse.fromBuffer);
|
||||
static final _$sanitised = $grpc.ClientMethod<$0.ExecutionflowSanitisedRequest, $0.ExecutionflowSanitisedResponse>(
|
||||
'/api.ExecutionflowInputAPI/Sanitised',
|
||||
($0.ExecutionflowSanitisedRequest value) => value.writeToBuffer(),
|
||||
$0.ExecutionflowSanitisedResponse.fromBuffer);
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.ExecutionflowInputAPI')
|
||||
@@ -508,6 +516,13 @@ abstract class ExecutionflowInputAPIServiceBase extends $grpc.Service {
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.ExecutionflowRenotifiedRequest.fromBuffer(value),
|
||||
($0.ExecutionflowRenotifiedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.ExecutionflowSanitisedRequest, $0.ExecutionflowSanitisedResponse>(
|
||||
'Sanitised',
|
||||
sanitised_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.ExecutionflowSanitisedRequest.fromBuffer(value),
|
||||
($0.ExecutionflowSanitisedResponse value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$0.ExecutionflowCreatedResponse> created_Pre($grpc.ServiceCall $call, $async.Future<$0.ExecutionflowCreatedRequest> $request) async {
|
||||
@@ -696,4 +711,10 @@ abstract class ExecutionflowInputAPIServiceBase extends $grpc.Service {
|
||||
|
||||
$async.Future<$0.ExecutionflowRenotifiedResponse> renotified($grpc.ServiceCall call, $0.ExecutionflowRenotifiedRequest request);
|
||||
|
||||
$async.Future<$0.ExecutionflowSanitisedResponse> sanitised_Pre($grpc.ServiceCall $call, $async.Future<$0.ExecutionflowSanitisedRequest> $request) async {
|
||||
return sanitised($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.ExecutionflowSanitisedResponse> sanitised($grpc.ServiceCall call, $0.ExecutionflowSanitisedRequest request);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user