665
666
// ListQueues mocks base method.
667
>
func (m *MockHistoryServiceClient) ListQueues(ctx context.Context, in *historyservice.ListQueuesRequest, opts ...grpc.CallOption) (*historyservice.ListQueuesResponse, error) {
service_grpc.pb.mock.go
668
>
m.ctrl.T.Helper()
669
>
varargs := []any{ctx, in}
670
>
for _, a := range opts {
671
varargs = append(varargs, a)
672
}
674
>
ret0, _ := ret[0].(*historyservice.ListQueuesResponse)
675
>
ret1, _ := ret[1].(error)
676
>
return ret0, ret1
677
}
678
679
// ListQueues indicates an expected call of ListQueues.
680
>
func (mr *MockHistoryServiceClientMockRecorder) ListQueues(ctx, in any, opts ...any) *gomock.Call {
service_grpc.pb.mock.go
681
>
mr.mock.ctrl.T.Helper()
682
>
varargs := append([]any{ctx, in}, opts...)
683
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListQueues", reflect.TypeOf((*MockHistoryServiceClient)(nil).ListQueues), varargs...)
684
>
}
685
686
// ListTasks mocks base method.