Documentation ¶
Index ¶
- Variables
- func RegisterDummyServer(s *grpc.Server, srv DummyServer)
- type ComputeDoubleRequest
- func (*ComputeDoubleRequest) Descriptor() ([]byte, []int)deprecated
- func (x *ComputeDoubleRequest) GetInput32() int32deprecated
- func (*ComputeDoubleRequest) ProtoMessage()
- func (x *ComputeDoubleRequest) ProtoReflect() protoreflect.Message
- func (x *ComputeDoubleRequest) Reset()
- func (x *ComputeDoubleRequest) String() string
- type ComputeDoubleResponse
- func (*ComputeDoubleResponse) Descriptor() ([]byte, []int)deprecated
- func (x *ComputeDoubleResponse) GetResponse32() int32
- func (*ComputeDoubleResponse) ProtoMessage()
- func (x *ComputeDoubleResponse) ProtoReflect() protoreflect.Message
- func (x *ComputeDoubleResponse) Reset()
- func (x *ComputeDoubleResponse) String() string
- type DummyClient
- type DummyServer
- type UnimplementedDummyServer
Constants ¶
This section is empty.
Variables ¶
View Source
var File_github_com_kubernetes_csi_csi_proxy_integrationtests_apigroups_api_dummy_v1alpha1_api_proto protoreflect.FileDescriptor
Functions ¶
func RegisterDummyServer ¶
func RegisterDummyServer(s *grpc.Server, srv DummyServer)
Types ¶
type ComputeDoubleRequest ¶
type ComputeDoubleRequest struct { // Deprecated: Do not use. Input32 int32 `protobuf:"varint,1,opt,name=input32,proto3" json:"input32,omitempty"` // contains filtered or unexported fields }
func (*ComputeDoubleRequest) Descriptor
deprecated
func (*ComputeDoubleRequest) Descriptor() ([]byte, []int)
Deprecated: Use ComputeDoubleRequest.ProtoReflect.Descriptor instead.
func (*ComputeDoubleRequest) GetInput32
deprecated
func (x *ComputeDoubleRequest) GetInput32() int32
Deprecated: Do not use.
func (*ComputeDoubleRequest) ProtoMessage ¶
func (*ComputeDoubleRequest) ProtoMessage()
func (*ComputeDoubleRequest) ProtoReflect ¶ added in v1.0.0
func (x *ComputeDoubleRequest) ProtoReflect() protoreflect.Message
func (*ComputeDoubleRequest) Reset ¶
func (x *ComputeDoubleRequest) Reset()
func (*ComputeDoubleRequest) String ¶
func (x *ComputeDoubleRequest) String() string
type ComputeDoubleResponse ¶
type ComputeDoubleResponse struct { Response32 int32 `protobuf:"varint,1,opt,name=response32,proto3" json:"response32,omitempty"` // contains filtered or unexported fields }
func (*ComputeDoubleResponse) Descriptor
deprecated
func (*ComputeDoubleResponse) Descriptor() ([]byte, []int)
Deprecated: Use ComputeDoubleResponse.ProtoReflect.Descriptor instead.
func (*ComputeDoubleResponse) GetResponse32 ¶
func (x *ComputeDoubleResponse) GetResponse32() int32
func (*ComputeDoubleResponse) ProtoMessage ¶
func (*ComputeDoubleResponse) ProtoMessage()
func (*ComputeDoubleResponse) ProtoReflect ¶ added in v1.0.0
func (x *ComputeDoubleResponse) ProtoReflect() protoreflect.Message
func (*ComputeDoubleResponse) Reset ¶
func (x *ComputeDoubleResponse) Reset()
func (*ComputeDoubleResponse) String ¶
func (x *ComputeDoubleResponse) String() string
type DummyClient ¶
type DummyClient interface { // Deprecated: Do not use. // ComputeDouble computes the double of the input. Real smart stuff! ComputeDouble(ctx context.Context, in *ComputeDoubleRequest, opts ...grpc.CallOption) (*ComputeDoubleResponse, error) }
DummyClient is the client API for Dummy service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
func NewDummyClient ¶
func NewDummyClient(cc grpc.ClientConnInterface) DummyClient
type DummyServer ¶
type DummyServer interface { // Deprecated: Do not use. // ComputeDouble computes the double of the input. Real smart stuff! ComputeDouble(context.Context, *ComputeDoubleRequest) (*ComputeDoubleResponse, error) }
DummyServer is the server API for Dummy service.
type UnimplementedDummyServer ¶
type UnimplementedDummyServer struct { }
UnimplementedDummyServer can be embedded to have forward compatible implementations.
func (*UnimplementedDummyServer) ComputeDouble ¶
func (*UnimplementedDummyServer) ComputeDouble(context.Context, *ComputeDoubleRequest) (*ComputeDoubleResponse, error)
Click to show internal directories.
Click to hide internal directories.