Documentation ¶
Index ¶
- Variables
- func RegisterListenerDiscoveryServiceServer(s *grpc.Server, srv ListenerDiscoveryServiceServer)
- type LdsDummy
- type LdsDummyMultiError
- type LdsDummyValidationError
- type ListenerDiscoveryServiceClient
- type ListenerDiscoveryServiceServer
- type ListenerDiscoveryService_DeltaListenersClient
- type ListenerDiscoveryService_DeltaListenersServer
- type ListenerDiscoveryService_StreamListenersClient
- type ListenerDiscoveryService_StreamListenersServer
- type UnimplementedListenerDiscoveryServiceServer
- func (*UnimplementedListenerDiscoveryServiceServer) DeltaListeners(ListenerDiscoveryService_DeltaListenersServer) error
- func (*UnimplementedListenerDiscoveryServiceServer) FetchListeners(context.Context, *v3.DiscoveryRequest) (*v3.DiscoveryResponse, error)
- func (*UnimplementedListenerDiscoveryServiceServer) StreamListeners(ListenerDiscoveryService_StreamListenersServer) error
Constants ¶
This section is empty.
Variables ¶
var File_envoy_service_listener_v3_lds_proto protoreflect.FileDescriptor
Functions ¶
func RegisterListenerDiscoveryServiceServer ¶
func RegisterListenerDiscoveryServiceServer(s *grpc.Server, srv ListenerDiscoveryServiceServer)
Types ¶
type LdsDummy ¶
type LdsDummy struct {
// contains filtered or unexported fields
}
[#not-implemented-hide:] Not configuration. Workaround c++ protobuf issue with importing services: https://github.com/google/protobuf/issues/4221 and protoxform to upgrade the file.
func (*LdsDummy) Descriptor
deprecated
func (*LdsDummy) ProtoMessage ¶
func (*LdsDummy) ProtoMessage()
func (*LdsDummy) ProtoReflect ¶ added in v0.9.6
func (x *LdsDummy) ProtoReflect() protoreflect.Message
func (*LdsDummy) Validate ¶
Validate checks the field values on LdsDummy with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*LdsDummy) ValidateAll ¶ added in v0.10.0
ValidateAll checks the field values on LdsDummy with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in LdsDummyMultiError, or nil if none found.
type LdsDummyMultiError ¶ added in v0.10.0
type LdsDummyMultiError []error
LdsDummyMultiError is an error wrapping multiple validation errors returned by LdsDummy.ValidateAll() if the designated constraints aren't met.
func (LdsDummyMultiError) AllErrors ¶ added in v0.10.0
func (m LdsDummyMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (LdsDummyMultiError) Error ¶ added in v0.10.0
func (m LdsDummyMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type LdsDummyValidationError ¶
type LdsDummyValidationError struct {
// contains filtered or unexported fields
}
LdsDummyValidationError is the validation error returned by LdsDummy.Validate if the designated constraints aren't met.
func (LdsDummyValidationError) Cause ¶
func (e LdsDummyValidationError) Cause() error
Cause function returns cause value.
func (LdsDummyValidationError) Error ¶
func (e LdsDummyValidationError) Error() string
Error satisfies the builtin error interface
func (LdsDummyValidationError) ErrorName ¶
func (e LdsDummyValidationError) ErrorName() string
ErrorName returns error name.
func (LdsDummyValidationError) Field ¶
func (e LdsDummyValidationError) Field() string
Field function returns field value.
func (LdsDummyValidationError) Key ¶
func (e LdsDummyValidationError) Key() bool
Key function returns key value.
func (LdsDummyValidationError) Reason ¶
func (e LdsDummyValidationError) Reason() string
Reason function returns reason value.
type ListenerDiscoveryServiceClient ¶
type ListenerDiscoveryServiceClient interface { DeltaListeners(ctx context.Context, opts ...grpc.CallOption) (ListenerDiscoveryService_DeltaListenersClient, error) StreamListeners(ctx context.Context, opts ...grpc.CallOption) (ListenerDiscoveryService_StreamListenersClient, error) FetchListeners(ctx context.Context, in *v3.DiscoveryRequest, opts ...grpc.CallOption) (*v3.DiscoveryResponse, error) }
ListenerDiscoveryServiceClient is the client API for ListenerDiscoveryService service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
func NewListenerDiscoveryServiceClient ¶
func NewListenerDiscoveryServiceClient(cc grpc.ClientConnInterface) ListenerDiscoveryServiceClient
type ListenerDiscoveryServiceServer ¶
type ListenerDiscoveryServiceServer interface { DeltaListeners(ListenerDiscoveryService_DeltaListenersServer) error StreamListeners(ListenerDiscoveryService_StreamListenersServer) error FetchListeners(context.Context, *v3.DiscoveryRequest) (*v3.DiscoveryResponse, error) }
ListenerDiscoveryServiceServer is the server API for ListenerDiscoveryService service.
type ListenerDiscoveryService_DeltaListenersClient ¶
type ListenerDiscoveryService_DeltaListenersClient interface { Send(*v3.DeltaDiscoveryRequest) error Recv() (*v3.DeltaDiscoveryResponse, error) grpc.ClientStream }
type ListenerDiscoveryService_DeltaListenersServer ¶
type ListenerDiscoveryService_DeltaListenersServer interface { Send(*v3.DeltaDiscoveryResponse) error Recv() (*v3.DeltaDiscoveryRequest, error) grpc.ServerStream }
type ListenerDiscoveryService_StreamListenersClient ¶
type ListenerDiscoveryService_StreamListenersClient interface { Send(*v3.DiscoveryRequest) error Recv() (*v3.DiscoveryResponse, error) grpc.ClientStream }
type ListenerDiscoveryService_StreamListenersServer ¶
type ListenerDiscoveryService_StreamListenersServer interface { Send(*v3.DiscoveryResponse) error Recv() (*v3.DiscoveryRequest, error) grpc.ServerStream }
type UnimplementedListenerDiscoveryServiceServer ¶
type UnimplementedListenerDiscoveryServiceServer struct { }
UnimplementedListenerDiscoveryServiceServer can be embedded to have forward compatible implementations.
func (*UnimplementedListenerDiscoveryServiceServer) DeltaListeners ¶
func (*UnimplementedListenerDiscoveryServiceServer) DeltaListeners(ListenerDiscoveryService_DeltaListenersServer) error
func (*UnimplementedListenerDiscoveryServiceServer) FetchListeners ¶
func (*UnimplementedListenerDiscoveryServiceServer) FetchListeners(context.Context, *v3.DiscoveryRequest) (*v3.DiscoveryResponse, error)
func (*UnimplementedListenerDiscoveryServiceServer) StreamListeners ¶
func (*UnimplementedListenerDiscoveryServiceServer) StreamListeners(ListenerDiscoveryService_StreamListenersServer) error