1305
1306
// StartNexusOperation mocks base method.
1307
>
func (m *MockHistoryServiceClient) StartNexusOperation(ctx context.Context, in *historyservice.StartNexusOperationRequest, opts ...grpc.CallOption) (*historyservice.StartNexusOperationResponse, error) {
service_grpc.pb.mock.go
1308
>
m.ctrl.T.Helper()
1309
>
varargs := []any{ctx, in}
1310
>
for _, a := range opts {
1311
varargs = append(varargs, a)
1312
}
1314
>
ret0, _ := ret[0].(*historyservice.StartNexusOperationResponse)
1315
>
ret1, _ := ret[1].(error)
1316
>
return ret0, ret1
1317
}
1318
1319
// StartNexusOperation indicates an expected call of StartNexusOperation.
1320
>
func (mr *MockHistoryServiceClientMockRecorder) StartNexusOperation(ctx, in any, opts ...any) *gomock.Call {
service_grpc.pb.mock.go
1321
>
mr.mock.ctrl.T.Helper()
1322
>
varargs := append([]any{ctx, in}, opts...)
1323
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StartNexusOperation", reflect.TypeOf((*MockHistoryServiceClient)(nil).StartNexusOperation), varargs...)
1324
>
}
1325
1326
// StartWorkflowExecution mocks base method.