import "google.golang.org/grpc/stress/grpc_testing"
metrics.pb.go metrics_grpc.pb.go
var File_stress_grpc_testing_metrics_proto protoreflect.FileDescriptor
var MetricsService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "grpc.testing.MetricsService", HandlerType: (*MetricsServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "GetGauge", Handler: _MetricsService_GetGauge_Handler, }, }, Streams: []grpc.StreamDesc{ { StreamName: "GetAllGauges", Handler: _MetricsService_GetAllGauges_Handler, ServerStreams: true, }, }, Metadata: "stress/grpc_testing/metrics.proto", }
MetricsService_ServiceDesc is the grpc.ServiceDesc for MetricsService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)
func RegisterMetricsServiceServer(s grpc.ServiceRegistrar, srv MetricsServiceServer)
type EmptyMessage struct {
// contains filtered or unexported fields
}
func (*EmptyMessage) Descriptor() ([]byte, []int)
Deprecated: Use EmptyMessage.ProtoReflect.Descriptor instead.
func (*EmptyMessage) ProtoMessage()
func (x *EmptyMessage) ProtoReflect() protoreflect.Message
func (x *EmptyMessage) Reset()
func (x *EmptyMessage) String() string
type GaugeRequest struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // contains filtered or unexported fields }
Request message containing the gauge name
func (*GaugeRequest) Descriptor() ([]byte, []int)
Deprecated: Use GaugeRequest.ProtoReflect.Descriptor instead.
func (x *GaugeRequest) GetName() string
func (*GaugeRequest) ProtoMessage()
func (x *GaugeRequest) ProtoReflect() protoreflect.Message
func (x *GaugeRequest) Reset()
func (x *GaugeRequest) String() string
type GaugeResponse struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Types that are assignable to Value: // *GaugeResponse_LongValue // *GaugeResponse_DoubleValue // *GaugeResponse_StringValue Value isGaugeResponse_Value `protobuf_oneof:"value"` // contains filtered or unexported fields }
Response message containing the gauge name and value
func (*GaugeResponse) Descriptor() ([]byte, []int)
Deprecated: Use GaugeResponse.ProtoReflect.Descriptor instead.
func (x *GaugeResponse) GetDoubleValue() float64
func (x *GaugeResponse) GetLongValue() int64
func (x *GaugeResponse) GetName() string
func (x *GaugeResponse) GetStringValue() string
func (m *GaugeResponse) GetValue() isGaugeResponse_Value
func (*GaugeResponse) ProtoMessage()
func (x *GaugeResponse) ProtoReflect() protoreflect.Message
func (x *GaugeResponse) Reset()
func (x *GaugeResponse) String() string
type GaugeResponse_DoubleValue struct { DoubleValue float64 `protobuf:"fixed64,3,opt,name=double_value,json=doubleValue,proto3,oneof"` }
type GaugeResponse_LongValue struct { LongValue int64 `protobuf:"varint,2,opt,name=long_value,json=longValue,proto3,oneof"` }
type GaugeResponse_StringValue struct { StringValue string `protobuf:"bytes,4,opt,name=string_value,json=stringValue,proto3,oneof"` }
type MetricsServiceClient interface { // Returns the values of all the gauges that are currently being maintained by // the service GetAllGauges(ctx context.Context, in *EmptyMessage, opts ...grpc.CallOption) (MetricsService_GetAllGaugesClient, error) // Returns the value of one gauge GetGauge(ctx context.Context, in *GaugeRequest, opts ...grpc.CallOption) (*GaugeResponse, error) }
MetricsServiceClient is the client API for MetricsService service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
func NewMetricsServiceClient(cc grpc.ClientConnInterface) MetricsServiceClient
type MetricsServiceServer interface { // Returns the values of all the gauges that are currently being maintained by // the service GetAllGauges(*EmptyMessage, MetricsService_GetAllGaugesServer) error // Returns the value of one gauge GetGauge(context.Context, *GaugeRequest) (*GaugeResponse, error) // contains filtered or unexported methods }
MetricsServiceServer is the server API for MetricsService service. All implementations must embed UnimplementedMetricsServiceServer for forward compatibility
type MetricsService_GetAllGaugesClient interface { Recv() (*GaugeResponse, error) grpc.ClientStream }
type MetricsService_GetAllGaugesServer interface { Send(*GaugeResponse) error grpc.ServerStream }
type UnimplementedMetricsServiceServer struct { }
UnimplementedMetricsServiceServer must be embedded to have forward compatible implementations.
func (UnimplementedMetricsServiceServer) GetAllGauges(*EmptyMessage, MetricsService_GetAllGaugesServer) error
func (UnimplementedMetricsServiceServer) GetGauge(context.Context, *GaugeRequest) (*GaugeResponse, error)
type UnsafeMetricsServiceServer interface {
// contains filtered or unexported methods
}
UnsafeMetricsServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to MetricsServiceServer will result in compilation errors.
Package grpc_testing imports 9 packages (graph) and is imported by 41 packages. Updated 2021-01-16. Refresh now. Tools for package owners.