1265
1266
// SignalWithStartWorkflowExecution mocks base method.
1267
>
func (m *MockHistoryServiceClient) SignalWithStartWorkflowExecution(ctx context.Context, in *historyservice.SignalWithStartWorkflowExecutionRequest, opts ...grpc.CallOption) (*historyservice.SignalWithStartWorkflowExecutionResponse, error) {
service_grpc.pb.mock.go
1268
>
m.ctrl.T.Helper()
1269
>
varargs := []any{ctx, in}
1270
>
for _, a := range opts {
1271
varargs = append(varargs, a)
1272
}
1274
>
ret0, _ := ret[0].(*historyservice.SignalWithStartWorkflowExecutionResponse)
1275
>
ret1, _ := ret[1].(error)
1276
>
return ret0, ret1
1277
}
1278
1279
// SignalWithStartWorkflowExecution indicates an expected call of SignalWithStartWorkflowExecution.
1280
>
func (mr *MockHistoryServiceClientMockRecorder) SignalWithStartWorkflowExecution(ctx, in any, opts ...any) *gomock.Call {
service_grpc.pb.mock.go
1281
>
mr.mock.ctrl.T.Helper()
1282
>
varargs := append([]any{ctx, in}, opts...)
1283
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SignalWithStartWorkflowExecution", reflect.TypeOf((*MockHistoryServiceClient)(nil).SignalWithStartWorkflowExecution), varargs...)
1284
>
}
1285
1286
// SignalWorkflowExecution mocks base method.