1325
1326
// StartWorkflowExecution mocks base method.
1327
>
func (m *MockHistoryServiceClient) StartWorkflowExecution(ctx context.Context, in *historyservice.StartWorkflowExecutionRequest, opts ...grpc.CallOption) (*historyservice.StartWorkflowExecutionResponse, error) {
service_grpc.pb.mock.go
1328
>
m.ctrl.T.Helper()
1329
>
varargs := []any{ctx, in}
1330
>
for _, a := range opts {
1331
varargs = append(varargs, a)
1332
}
1334
>
ret0, _ := ret[0].(*historyservice.StartWorkflowExecutionResponse)
1335
>
ret1, _ := ret[1].(error)
1336
>
return ret0, ret1
1337
}
1338
1339
// StartWorkflowExecution indicates an expected call of StartWorkflowExecution.
1340
>
func (mr *MockHistoryServiceClientMockRecorder) StartWorkflowExecution(ctx, in any, opts ...any) *gomock.Call {
service_grpc.pb.mock.go
1341
>
mr.mock.ctrl.T.Helper()
1342
>
varargs := append([]any{ctx, in}, opts...)
1343
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StartWorkflowExecution", reflect.TypeOf((*MockHistoryServiceClient)(nil).StartWorkflowExecution), varargs...)
1344
>
}
1345
1346
// StreamWorkflowReplicationMessages mocks base method.