You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -133,6 +133,10 @@ class WorkflowServiceClient extends $grpc.Client {
|
||||
'/api.WorkflowService/StartWorkflowUpgradeModel',
|
||||
($21.StartWorkflowUpgradeModelRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $21.StartWorkflowUpgradeModelResult.fromBuffer(value));
|
||||
static final _$startWorkflowSweep = $grpc.ClientMethod<$21.StartWorkflowSweepRequest, $21.StartWorkflowSweepResult>(
|
||||
'/api.WorkflowService/StartWorkflowSweep',
|
||||
($21.StartWorkflowSweepRequest value) => value.writeToBuffer(),
|
||||
($core.List<$core.int> value) => $21.StartWorkflowSweepResult.fromBuffer(value));
|
||||
|
||||
WorkflowServiceClient($grpc.ClientChannel channel,
|
||||
{$grpc.CallOptions? options,
|
||||
@@ -251,6 +255,10 @@ class WorkflowServiceClient extends $grpc.Client {
|
||||
$grpc.ResponseFuture<$21.StartWorkflowUpgradeModelResult> startWorkflowUpgradeModel($21.StartWorkflowUpgradeModelRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$startWorkflowUpgradeModel, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$21.StartWorkflowSweepResult> startWorkflowSweep($21.StartWorkflowSweepRequest request, {$grpc.CallOptions? options}) {
|
||||
return $createUnaryCall(_$startWorkflowSweep, request, options: options);
|
||||
}
|
||||
}
|
||||
|
||||
@$pb.GrpcServiceName('api.WorkflowService')
|
||||
@@ -454,6 +462,13 @@ abstract class WorkflowServiceBase extends $grpc.Service {
|
||||
false,
|
||||
($core.List<$core.int> value) => $21.StartWorkflowUpgradeModelRequest.fromBuffer(value),
|
||||
($21.StartWorkflowUpgradeModelResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$21.StartWorkflowSweepRequest, $21.StartWorkflowSweepResult>(
|
||||
'StartWorkflowSweep',
|
||||
startWorkflowSweep_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $21.StartWorkflowSweepRequest.fromBuffer(value),
|
||||
($21.StartWorkflowSweepResult value) => value.writeToBuffer()));
|
||||
}
|
||||
|
||||
$async.Future<$21.RetryWorkflowResult> retryWorkflow_Pre($grpc.ServiceCall $call, $async.Future<$21.RetryWorkflowRequest> $request) async {
|
||||
@@ -568,6 +583,10 @@ abstract class WorkflowServiceBase extends $grpc.Service {
|
||||
return startWorkflowUpgradeModel($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$21.StartWorkflowSweepResult> startWorkflowSweep_Pre($grpc.ServiceCall $call, $async.Future<$21.StartWorkflowSweepRequest> $request) async {
|
||||
return startWorkflowSweep($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$21.RetryWorkflowResult> retryWorkflow($grpc.ServiceCall call, $21.RetryWorkflowRequest request);
|
||||
$async.Future<$21.StartWorkflowCreateProjectResult> startWorkflowCreateProject($grpc.ServiceCall call, $21.StartWorkflowCreateProjectRequest request);
|
||||
$async.Future<$21.StartWorkflowDeleteProjectResult> startWorkflowDeleteProject($grpc.ServiceCall call, $21.StartWorkflowDeleteProjectRequest request);
|
||||
@@ -596,4 +615,5 @@ abstract class WorkflowServiceBase extends $grpc.Service {
|
||||
$async.Future<$21.StartWorkflowSynchronizeRulesOnGitResult> startWorkflowSynchronizeRulesOnGit($grpc.ServiceCall call, $21.StartWorkflowSynchronizeRulesOnGitRequest request);
|
||||
$async.Future<$21.StartWorkflowAnonymizeDataResult> startWorkflowAnonymizeData($grpc.ServiceCall call, $21.StartWorkflowAnonymizeDataRequest request);
|
||||
$async.Future<$21.StartWorkflowUpgradeModelResult> startWorkflowUpgradeModel($grpc.ServiceCall call, $21.StartWorkflowUpgradeModelRequest request);
|
||||
$async.Future<$21.StartWorkflowSweepResult> startWorkflowSweep($grpc.ServiceCall call, $21.StartWorkflowSweepRequest request);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user