405
406
// GetDLQTasks mocks base method.
407
>
func (m *MockHistoryServiceClient) GetDLQTasks(ctx context.Context, in *historyservice.GetDLQTasksRequest, opts ...grpc.CallOption) (*historyservice.GetDLQTasksResponse, error) {
service_grpc.pb.mock.go
408
>
m.ctrl.T.Helper()
409
>
varargs := []any{ctx, in}
410
>
for _, a := range opts {
411
varargs = append(varargs, a)
412
}
414
>
ret0, _ := ret[0].(*historyservice.GetDLQTasksResponse)
415
>
ret1, _ := ret[1].(error)
416
>
return ret0, ret1
417
}
418
419
// GetDLQTasks indicates an expected call of GetDLQTasks.
420
>
func (mr *MockHistoryServiceClientMockRecorder) GetDLQTasks(ctx, in any, opts ...any) *gomock.Call {
service_grpc.pb.mock.go
421
>
mr.mock.ctrl.T.Helper()
422
>
varargs := append([]any{ctx, in}, opts...)
423
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetDLQTasks", reflect.TypeOf((*MockHistoryServiceClient)(nil).GetDLQTasks), varargs...)
424
>
}
425
426
// GetMutableState mocks base method.