1285
1286
// SignalWorkflowExecution mocks base method.
1287
>
func (m *MockHistoryServiceClient) SignalWorkflowExecution(ctx context.Context, in *historyservice.SignalWorkflowExecutionRequest, opts ...grpc.CallOption) (*historyservice.SignalWorkflowExecutionResponse, error) {
service_grpc.pb.mock.go
1288
>
m.ctrl.T.Helper()
1289
>
varargs := []any{ctx, in}
1290
>
for _, a := range opts {
1291
varargs = append(varargs, a)
1292
}
1294
>
ret0, _ := ret[0].(*historyservice.SignalWorkflowExecutionResponse)
1295
>
ret1, _ := ret[1].(error)
1296
>
return ret0, ret1
1297
}
1298
1299
// SignalWorkflowExecution indicates an expected call of SignalWorkflowExecution.
1300
>
func (mr *MockHistoryServiceClientMockRecorder) SignalWorkflowExecution(ctx, in any, opts ...any) *gomock.Call {
service_grpc.pb.mock.go
1301
>
mr.mock.ctrl.T.Helper()
1302
>
varargs := append([]any{ctx, in}, opts...)
1303
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SignalWorkflowExecution", reflect.TypeOf((*MockHistoryServiceClient)(nil).SignalWorkflowExecution), varargs...)
1304
>
}
1305
1306
// StartNexusOperation mocks base method.