504
505
// ListNexusEndpoints mocks base method.
506
>
func (m *MockMatchingServiceClient) ListNexusEndpoints(ctx context.Context, in *matchingservice.ListNexusEndpointsRequest, opts ...grpc.CallOption) (*matchingservice.ListNexusEndpointsResponse, error) {
service_grpc.pb.mock.go
507
>
m.ctrl.T.Helper()
508
>
varargs := []any{ctx, in}
509
>
for _, a := range opts {
510
varargs = append(varargs, a)
511
}
513
>
ret0, _ := ret[0].(*matchingservice.ListNexusEndpointsResponse)
514
>
ret1, _ := ret[1].(error)
515
>
return ret0, ret1
516
}
517
518
// ListNexusEndpoints indicates an expected call of ListNexusEndpoints.
519
>
func (mr *MockMatchingServiceClientMockRecorder) ListNexusEndpoints(ctx, in any, opts ...any) *gomock.Call {
service_grpc.pb.mock.go
520
>
mr.mock.ctrl.T.Helper()
521
>
varargs := append([]any{ctx, in}, opts...)
522
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListNexusEndpoints", reflect.TypeOf((*MockMatchingServiceClient)(nil).ListNexusEndpoints), varargs...)
523
>
}
524
525
// ListTaskQueuePartitions mocks base method.