grpc_reflection_v1alpha - ActiveState ActiveGo 1.8
...

Package grpc_reflection_v1alpha

import "google.golang.org/grpc/reflection/grpc_reflection_v1alpha"
Overview
Index

Overview ▾

Package grpc_reflection_v1alpha is a generated protocol buffer package.

It is generated from these files:

reflection.proto

It has these top-level messages:

ServerReflectionRequest
ExtensionRequest
ServerReflectionResponse
FileDescriptorResponse
ExtensionNumberResponse
ListServiceResponse
ServiceResponse
ErrorResponse

Index ▾

func RegisterServerReflectionServer(s *grpc.Server, srv ServerReflectionServer)
type ErrorResponse
    func (*ErrorResponse) Descriptor() ([]byte, []int)
    func (*ErrorResponse) ProtoMessage()
    func (m *ErrorResponse) Reset()
    func (m *ErrorResponse) String() string
type ExtensionNumberResponse
    func (*ExtensionNumberResponse) Descriptor() ([]byte, []int)
    func (*ExtensionNumberResponse) ProtoMessage()
    func (m *ExtensionNumberResponse) Reset()
    func (m *ExtensionNumberResponse) String() string
type ExtensionRequest
    func (*ExtensionRequest) Descriptor() ([]byte, []int)
    func (*ExtensionRequest) ProtoMessage()
    func (m *ExtensionRequest) Reset()
    func (m *ExtensionRequest) String() string
type FileDescriptorResponse
    func (*FileDescriptorResponse) Descriptor() ([]byte, []int)
    func (*FileDescriptorResponse) ProtoMessage()
    func (m *FileDescriptorResponse) Reset()
    func (m *FileDescriptorResponse) String() string
type ListServiceResponse
    func (*ListServiceResponse) Descriptor() ([]byte, []int)
    func (m *ListServiceResponse) GetService() []*ServiceResponse
    func (*ListServiceResponse) ProtoMessage()
    func (m *ListServiceResponse) Reset()
    func (m *ListServiceResponse) String() string
type ServerReflectionClient
    func NewServerReflectionClient(cc *grpc.ClientConn) ServerReflectionClient
type ServerReflectionRequest
    func (*ServerReflectionRequest) Descriptor() ([]byte, []int)
    func (m *ServerReflectionRequest) GetAllExtensionNumbersOfType() string
    func (m *ServerReflectionRequest) GetFileByFilename() string
    func (m *ServerReflectionRequest) GetFileContainingExtension() *ExtensionRequest
    func (m *ServerReflectionRequest) GetFileContainingSymbol() string
    func (m *ServerReflectionRequest) GetListServices() string
    func (m *ServerReflectionRequest) GetMessageRequest() isServerReflectionRequest_MessageRequest
    func (*ServerReflectionRequest) ProtoMessage()
    func (m *ServerReflectionRequest) Reset()
    func (m *ServerReflectionRequest) String() string
    func (*ServerReflectionRequest) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{})
type ServerReflectionRequest_AllExtensionNumbersOfType
type ServerReflectionRequest_FileByFilename
type ServerReflectionRequest_FileContainingExtension
type ServerReflectionRequest_FileContainingSymbol
type ServerReflectionRequest_ListServices
type ServerReflectionResponse
    func (*ServerReflectionResponse) Descriptor() ([]byte, []int)
    func (m *ServerReflectionResponse) GetAllExtensionNumbersResponse() *ExtensionNumberResponse
    func (m *ServerReflectionResponse) GetErrorResponse() *ErrorResponse
    func (m *ServerReflectionResponse) GetFileDescriptorResponse() *FileDescriptorResponse
    func (m *ServerReflectionResponse) GetListServicesResponse() *ListServiceResponse
    func (m *ServerReflectionResponse) GetMessageResponse() isServerReflectionResponse_MessageResponse
    func (m *ServerReflectionResponse) GetOriginalRequest() *ServerReflectionRequest
    func (*ServerReflectionResponse) ProtoMessage()
    func (m *ServerReflectionResponse) Reset()
    func (m *ServerReflectionResponse) String() string
    func (*ServerReflectionResponse) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{})
type ServerReflectionResponse_AllExtensionNumbersResponse
type ServerReflectionResponse_ErrorResponse
type ServerReflectionResponse_FileDescriptorResponse
type ServerReflectionResponse_ListServicesResponse
type ServerReflectionServer
type ServerReflection_ServerReflectionInfoClient
type ServerReflection_ServerReflectionInfoServer
type ServiceResponse
    func (*ServiceResponse) Descriptor() ([]byte, []int)
    func (*ServiceResponse) ProtoMessage()
    func (m *ServiceResponse) Reset()
    func (m *ServiceResponse) String() string

Package files

reflection.pb.go

func RegisterServerReflectionServer

func RegisterServerReflectionServer(s *grpc.Server, srv ServerReflectionServer)

type ErrorResponse

The error code and error message sent by the server when an error occurs.

type ErrorResponse struct {
    // This field uses the error codes defined in grpc::StatusCode.
    ErrorCode    int32  `protobuf:"varint,1,opt,name=error_code,json=errorCode" json:"error_code,omitempty"`
    ErrorMessage string `protobuf:"bytes,2,opt,name=error_message,json=errorMessage" json:"error_message,omitempty"`
}

func (*ErrorResponse) Descriptor

func (*ErrorResponse) Descriptor() ([]byte, []int)

func (*ErrorResponse) ProtoMessage

func (*ErrorResponse) ProtoMessage()

func (*ErrorResponse) Reset

func (m *ErrorResponse) Reset()

func (*ErrorResponse) String

func (m *ErrorResponse) String() string

type ExtensionNumberResponse

A list of extension numbers sent by the server answering all_extension_numbers_of_type request.

type ExtensionNumberResponse struct {
    // Full name of the base type, including the package name. The format
    // is <package>.<type>
    BaseTypeName    string  `protobuf:"bytes,1,opt,name=base_type_name,json=baseTypeName" json:"base_type_name,omitempty"`
    ExtensionNumber []int32 `protobuf:"varint,2,rep,name=extension_number,json=extensionNumber" json:"extension_number,omitempty"`
}

func (*ExtensionNumberResponse) Descriptor

func (*ExtensionNumberResponse) Descriptor() ([]byte, []int)

func (*ExtensionNumberResponse) ProtoMessage

func (*ExtensionNumberResponse) ProtoMessage()

func (*ExtensionNumberResponse) Reset

func (m *ExtensionNumberResponse) Reset()

func (*ExtensionNumberResponse) String

func (m *ExtensionNumberResponse) String() string

type ExtensionRequest

The type name and extension number sent by the client when requesting file_containing_extension.

type ExtensionRequest struct {
    // Fully-qualified type name. The format should be <package>.<type>
    ContainingType  string `protobuf:"bytes,1,opt,name=containing_type,json=containingType" json:"containing_type,omitempty"`
    ExtensionNumber int32  `protobuf:"varint,2,opt,name=extension_number,json=extensionNumber" json:"extension_number,omitempty"`
}

func (*ExtensionRequest) Descriptor

func (*ExtensionRequest) Descriptor() ([]byte, []int)

func (*ExtensionRequest) ProtoMessage

func (*ExtensionRequest) ProtoMessage()

func (*ExtensionRequest) Reset

func (m *ExtensionRequest) Reset()

func (*ExtensionRequest) String

func (m *ExtensionRequest) String() string

type FileDescriptorResponse

Serialized FileDescriptorProto messages sent by the server answering a file_by_filename, file_containing_symbol, or file_containing_extension request.

type FileDescriptorResponse struct {
    // Serialized FileDescriptorProto messages. We avoid taking a dependency on
    // descriptor.proto, which uses proto2 only features, by making them opaque
    // bytes instead.
    FileDescriptorProto [][]byte `protobuf:"bytes,1,rep,name=file_descriptor_proto,json=fileDescriptorProto,proto3" json:"file_descriptor_proto,omitempty"`
}

func (*FileDescriptorResponse) Descriptor

func (*FileDescriptorResponse) Descriptor() ([]byte, []int)

func (*FileDescriptorResponse) ProtoMessage

func (*FileDescriptorResponse) ProtoMessage()

func (*FileDescriptorResponse) Reset

func (m *FileDescriptorResponse) Reset()

func (*FileDescriptorResponse) String

func (m *FileDescriptorResponse) String() string

type ListServiceResponse

A list of ServiceResponse sent by the server answering list_services request.

type ListServiceResponse struct {
    // The information of each service may be expanded in the future, so we use
    // ServiceResponse message to encapsulate it.
    Service []*ServiceResponse `protobuf:"bytes,1,rep,name=service" json:"service,omitempty"`
}

func (*ListServiceResponse) Descriptor

func (*ListServiceResponse) Descriptor() ([]byte, []int)

func (*ListServiceResponse) GetService

func (m *ListServiceResponse) GetService() []*ServiceResponse

func (*ListServiceResponse) ProtoMessage

func (*ListServiceResponse) ProtoMessage()

func (*ListServiceResponse) Reset

func (m *ListServiceResponse) Reset()

func (*ListServiceResponse) String

func (m *ListServiceResponse) String() string

type ServerReflectionClient

type ServerReflectionClient interface {
    // The reflection service is structured as a bidirectional stream, ensuring
    // all related requests go to a single server.
    ServerReflectionInfo(ctx context.Context, opts ...grpc.CallOption) (ServerReflection_ServerReflectionInfoClient, error)
}

func NewServerReflectionClient

func NewServerReflectionClient(cc *grpc.ClientConn) ServerReflectionClient

type ServerReflectionRequest

The message sent by the client when calling ServerReflectionInfo method.

type ServerReflectionRequest struct {
    Host string `protobuf:"bytes,1,opt,name=host" json:"host,omitempty"`
    // To use reflection service, the client should set one of the following
    // fields in message_request. The server distinguishes requests by their
    // defined field and then handles them using corresponding methods.
    //
    // Types that are valid to be assigned to MessageRequest:
    //	*ServerReflectionRequest_FileByFilename
    //	*ServerReflectionRequest_FileContainingSymbol
    //	*ServerReflectionRequest_FileContainingExtension
    //	*ServerReflectionRequest_AllExtensionNumbersOfType
    //	*ServerReflectionRequest_ListServices
    MessageRequest isServerReflectionRequest_MessageRequest `protobuf_oneof:"message_request"`
}

func (*ServerReflectionRequest) Descriptor

func (*ServerReflectionRequest) Descriptor() ([]byte, []int)

func (*ServerReflectionRequest) GetAllExtensionNumbersOfType

func (m *ServerReflectionRequest) GetAllExtensionNumbersOfType() string

func (*ServerReflectionRequest) GetFileByFilename

func (m *ServerReflectionRequest) GetFileByFilename() string

func (*ServerReflectionRequest) GetFileContainingExtension

func (m *ServerReflectionRequest) GetFileContainingExtension() *ExtensionRequest

func (*ServerReflectionRequest) GetFileContainingSymbol

func (m *ServerReflectionRequest) GetFileContainingSymbol() string

func (*ServerReflectionRequest) GetListServices

func (m *ServerReflectionRequest) GetListServices() string

func (*ServerReflectionRequest) GetMessageRequest

func (m *ServerReflectionRequest) GetMessageRequest() isServerReflectionRequest_MessageRequest

func (*ServerReflectionRequest) ProtoMessage

func (*ServerReflectionRequest) ProtoMessage()

func (*ServerReflectionRequest) Reset

func (m *ServerReflectionRequest) Reset()

func (*ServerReflectionRequest) String

func (m *ServerReflectionRequest) String() string

func (*ServerReflectionRequest) XXX_OneofFuncs

func (*ServerReflectionRequest) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{})

XXX_OneofFuncs is for the internal use of the proto package.

type ServerReflectionRequest_AllExtensionNumbersOfType

type ServerReflectionRequest_AllExtensionNumbersOfType struct {
    AllExtensionNumbersOfType string `protobuf:"bytes,6,opt,name=all_extension_numbers_of_type,json=allExtensionNumbersOfType,oneof"`
}

type ServerReflectionRequest_FileByFilename

type ServerReflectionRequest_FileByFilename struct {
    FileByFilename string `protobuf:"bytes,3,opt,name=file_by_filename,json=fileByFilename,oneof"`
}

type ServerReflectionRequest_FileContainingExtension

type ServerReflectionRequest_FileContainingExtension struct {
    FileContainingExtension *ExtensionRequest `protobuf:"bytes,5,opt,name=file_containing_extension,json=fileContainingExtension,oneof"`
}

type ServerReflectionRequest_FileContainingSymbol

type ServerReflectionRequest_FileContainingSymbol struct {
    FileContainingSymbol string `protobuf:"bytes,4,opt,name=file_containing_symbol,json=fileContainingSymbol,oneof"`
}

type ServerReflectionRequest_ListServices

type ServerReflectionRequest_ListServices struct {
    ListServices string `protobuf:"bytes,7,opt,name=list_services,json=listServices,oneof"`
}

type ServerReflectionResponse

The message sent by the server to answer ServerReflectionInfo method.

type ServerReflectionResponse struct {
    ValidHost       string                   `protobuf:"bytes,1,opt,name=valid_host,json=validHost" json:"valid_host,omitempty"`
    OriginalRequest *ServerReflectionRequest `protobuf:"bytes,2,opt,name=original_request,json=originalRequest" json:"original_request,omitempty"`
    // The server set one of the following fields accroding to the message_request
    // in the request.
    //
    // Types that are valid to be assigned to MessageResponse:
    //	*ServerReflectionResponse_FileDescriptorResponse
    //	*ServerReflectionResponse_AllExtensionNumbersResponse
    //	*ServerReflectionResponse_ListServicesResponse
    //	*ServerReflectionResponse_ErrorResponse
    MessageResponse isServerReflectionResponse_MessageResponse `protobuf_oneof:"message_response"`
}

func (*ServerReflectionResponse) Descriptor

func (*ServerReflectionResponse) Descriptor() ([]byte, []int)

func (*ServerReflectionResponse) GetAllExtensionNumbersResponse

func (m *ServerReflectionResponse) GetAllExtensionNumbersResponse() *ExtensionNumberResponse

func (*ServerReflectionResponse) GetErrorResponse

func (m *ServerReflectionResponse) GetErrorResponse() *ErrorResponse

func (*ServerReflectionResponse) GetFileDescriptorResponse

func (m *ServerReflectionResponse) GetFileDescriptorResponse() *FileDescriptorResponse

func (*ServerReflectionResponse) GetListServicesResponse

func (m *ServerReflectionResponse) GetListServicesResponse() *ListServiceResponse

func (*ServerReflectionResponse) GetMessageResponse

func (m *ServerReflectionResponse) GetMessageResponse() isServerReflectionResponse_MessageResponse

func (*ServerReflectionResponse) GetOriginalRequest

func (m *ServerReflectionResponse) GetOriginalRequest() *ServerReflectionRequest

func (*ServerReflectionResponse) ProtoMessage

func (*ServerReflectionResponse) ProtoMessage()

func (*ServerReflectionResponse) Reset

func (m *ServerReflectionResponse) Reset()

func (*ServerReflectionResponse) String

func (m *ServerReflectionResponse) String() string

func (*ServerReflectionResponse) XXX_OneofFuncs

func (*ServerReflectionResponse) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{})

XXX_OneofFuncs is for the internal use of the proto package.

type ServerReflectionResponse_AllExtensionNumbersResponse

type ServerReflectionResponse_AllExtensionNumbersResponse struct {
    AllExtensionNumbersResponse *ExtensionNumberResponse `protobuf:"bytes,5,opt,name=all_extension_numbers_response,json=allExtensionNumbersResponse,oneof"`
}

type ServerReflectionResponse_ErrorResponse

type ServerReflectionResponse_ErrorResponse struct {
    ErrorResponse *ErrorResponse `protobuf:"bytes,7,opt,name=error_response,json=errorResponse,oneof"`
}

type ServerReflectionResponse_FileDescriptorResponse

type ServerReflectionResponse_FileDescriptorResponse struct {
    FileDescriptorResponse *FileDescriptorResponse `protobuf:"bytes,4,opt,name=file_descriptor_response,json=fileDescriptorResponse,oneof"`
}

type ServerReflectionResponse_ListServicesResponse

type ServerReflectionResponse_ListServicesResponse struct {
    ListServicesResponse *ListServiceResponse `protobuf:"bytes,6,opt,name=list_services_response,json=listServicesResponse,oneof"`
}

type ServerReflectionServer

type ServerReflectionServer interface {
    // The reflection service is structured as a bidirectional stream, ensuring
    // all related requests go to a single server.
    ServerReflectionInfo(ServerReflection_ServerReflectionInfoServer) error
}

type ServerReflection_ServerReflectionInfoClient

type ServerReflection_ServerReflectionInfoClient interface {
    Send(*ServerReflectionRequest) error
    Recv() (*ServerReflectionResponse, error)
    grpc.ClientStream
}

type ServerReflection_ServerReflectionInfoServer

type ServerReflection_ServerReflectionInfoServer interface {
    Send(*ServerReflectionResponse) error
    Recv() (*ServerReflectionRequest, error)
    grpc.ServerStream
}

type ServiceResponse

The information of a single service used by ListServiceResponse to answer list_services request.

type ServiceResponse struct {
    // Full name of a registered service, including its package name. The format
    // is <package>.<service>
    Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
}

func (*ServiceResponse) Descriptor

func (*ServiceResponse) Descriptor() ([]byte, []int)

func (*ServiceResponse) ProtoMessage

func (*ServiceResponse) ProtoMessage()

func (*ServiceResponse) Reset

func (m *ServiceResponse) Reset()

func (*ServiceResponse) String

func (m *ServiceResponse) String() string