Documentation ¶
Index ¶
- Variables
- func RegisterConnectionsServer(s grpc.ServiceRegistrar, srv ConnectionsServer)
- type ConnectionsClient
- type ConnectionsId
- type ConnectionsInfo
- func (*ConnectionsInfo) Descriptor() ([]byte, []int)deprecated
- func (x *ConnectionsInfo) GetConnections() []*statistic.Connection
- func (*ConnectionsInfo) ProtoMessage()
- func (x *ConnectionsInfo) ProtoReflect() protoreflect.Message
- func (x *ConnectionsInfo) Reset()
- func (x *ConnectionsInfo) String() string
- type ConnectionsServer
- type Connections_NotifyClient
- type Connections_NotifyServer
- type NotifyData
- func (*NotifyData) Descriptor() ([]byte, []int)deprecated
- func (m *NotifyData) GetData() isNotifyData_Data
- func (x *NotifyData) GetNotifyNewConnections() *NotifyNewConnections
- func (x *NotifyData) GetNotifyRemoveConnections() *NotifyRemoveConnections
- func (*NotifyData) ProtoMessage()
- func (x *NotifyData) ProtoReflect() protoreflect.Message
- func (x *NotifyData) Reset()
- func (x *NotifyData) String() string
- type NotifyData_NotifyNewConnections
- type NotifyData_NotifyRemoveConnections
- type NotifyNewConnections
- func (*NotifyNewConnections) Descriptor() ([]byte, []int)deprecated
- func (x *NotifyNewConnections) GetConnections() []*statistic.Connection
- func (*NotifyNewConnections) ProtoMessage()
- func (x *NotifyNewConnections) ProtoReflect() protoreflect.Message
- func (x *NotifyNewConnections) Reset()
- func (x *NotifyNewConnections) String() string
- type NotifyRemoveConnections
- func (*NotifyRemoveConnections) Descriptor() ([]byte, []int)deprecated
- func (x *NotifyRemoveConnections) GetIds() []uint64
- func (*NotifyRemoveConnections) ProtoMessage()
- func (x *NotifyRemoveConnections) ProtoReflect() protoreflect.Message
- func (x *NotifyRemoveConnections) Reset()
- func (x *NotifyRemoveConnections) String() string
- type TotalFlow
- type UnimplementedConnectionsServer
- func (UnimplementedConnectionsServer) CloseConn(context.Context, *ConnectionsId) (*emptypb.Empty, error)
- func (UnimplementedConnectionsServer) Conns(context.Context, *emptypb.Empty) (*ConnectionsInfo, error)
- func (UnimplementedConnectionsServer) Notify(*emptypb.Empty, Connections_NotifyServer) error
- func (UnimplementedConnectionsServer) Total(context.Context, *emptypb.Empty) (*TotalFlow, error)
- type UnsafeConnectionsServer
Constants ¶
This section is empty.
Variables ¶
var Connections_ServiceDesc = grpc.ServiceDesc{ ServiceName: "yuhaiin.protos.statistic.service.connections", HandlerType: (*ConnectionsServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "conns", Handler: _Connections_Conns_Handler, }, { MethodName: "close_conn", Handler: _Connections_CloseConn_Handler, }, { MethodName: "total", Handler: _Connections_Total_Handler, }, }, Streams: []grpc.StreamDesc{ { StreamName: "notify", Handler: _Connections_Notify_Handler, ServerStreams: true, }, }, Metadata: "statistic/grpc/config.proto", }
Connections_ServiceDesc is the grpc.ServiceDesc for Connections service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)
var File_statistic_grpc_config_proto protoreflect.FileDescriptor
Functions ¶
func RegisterConnectionsServer ¶
func RegisterConnectionsServer(s grpc.ServiceRegistrar, srv ConnectionsServer)
Types ¶
type ConnectionsClient ¶
type ConnectionsClient interface { Conns(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*ConnectionsInfo, error) CloseConn(ctx context.Context, in *ConnectionsId, opts ...grpc.CallOption) (*emptypb.Empty, error) Total(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*TotalFlow, error) Notify(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (Connections_NotifyClient, error) }
ConnectionsClient is the client API for Connections 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 NewConnectionsClient ¶
func NewConnectionsClient(cc grpc.ClientConnInterface) ConnectionsClient
type ConnectionsId ¶
type ConnectionsId struct { Ids []uint64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"` // contains filtered or unexported fields }
func (*ConnectionsId) Descriptor
deprecated
func (*ConnectionsId) Descriptor() ([]byte, []int)
Deprecated: Use ConnectionsId.ProtoReflect.Descriptor instead.
func (*ConnectionsId) GetIds ¶
func (x *ConnectionsId) GetIds() []uint64
func (*ConnectionsId) ProtoMessage ¶
func (*ConnectionsId) ProtoMessage()
func (*ConnectionsId) ProtoReflect ¶
func (x *ConnectionsId) ProtoReflect() protoreflect.Message
func (*ConnectionsId) Reset ¶
func (x *ConnectionsId) Reset()
func (*ConnectionsId) String ¶
func (x *ConnectionsId) String() string
type ConnectionsInfo ¶
type ConnectionsInfo struct { Connections []*statistic.Connection `protobuf:"bytes,1,rep,name=connections,proto3" json:"connections,omitempty"` // contains filtered or unexported fields }
func (*ConnectionsInfo) Descriptor
deprecated
func (*ConnectionsInfo) Descriptor() ([]byte, []int)
Deprecated: Use ConnectionsInfo.ProtoReflect.Descriptor instead.
func (*ConnectionsInfo) GetConnections ¶
func (x *ConnectionsInfo) GetConnections() []*statistic.Connection
func (*ConnectionsInfo) ProtoMessage ¶
func (*ConnectionsInfo) ProtoMessage()
func (*ConnectionsInfo) ProtoReflect ¶
func (x *ConnectionsInfo) ProtoReflect() protoreflect.Message
func (*ConnectionsInfo) Reset ¶
func (x *ConnectionsInfo) Reset()
func (*ConnectionsInfo) String ¶
func (x *ConnectionsInfo) String() string
type ConnectionsServer ¶
type ConnectionsServer interface { Conns(context.Context, *emptypb.Empty) (*ConnectionsInfo, error) CloseConn(context.Context, *ConnectionsId) (*emptypb.Empty, error) Total(context.Context, *emptypb.Empty) (*TotalFlow, error) Notify(*emptypb.Empty, Connections_NotifyServer) error // contains filtered or unexported methods }
ConnectionsServer is the server API for Connections service. All implementations must embed UnimplementedConnectionsServer for forward compatibility
type Connections_NotifyClient ¶
type Connections_NotifyClient interface { Recv() (*NotifyData, error) grpc.ClientStream }
type Connections_NotifyServer ¶
type Connections_NotifyServer interface { Send(*NotifyData) error grpc.ServerStream }
type NotifyData ¶
type NotifyData struct { // Types that are assignable to Data: // // *NotifyData_NotifyNewConnections // *NotifyData_NotifyRemoveConnections Data isNotifyData_Data `protobuf_oneof:"data"` // contains filtered or unexported fields }
func (*NotifyData) Descriptor
deprecated
func (*NotifyData) Descriptor() ([]byte, []int)
Deprecated: Use NotifyData.ProtoReflect.Descriptor instead.
func (*NotifyData) GetData ¶
func (m *NotifyData) GetData() isNotifyData_Data
func (*NotifyData) GetNotifyNewConnections ¶
func (x *NotifyData) GetNotifyNewConnections() *NotifyNewConnections
func (*NotifyData) GetNotifyRemoveConnections ¶
func (x *NotifyData) GetNotifyRemoveConnections() *NotifyRemoveConnections
func (*NotifyData) ProtoMessage ¶
func (*NotifyData) ProtoMessage()
func (*NotifyData) ProtoReflect ¶
func (x *NotifyData) ProtoReflect() protoreflect.Message
func (*NotifyData) Reset ¶
func (x *NotifyData) Reset()
func (*NotifyData) String ¶
func (x *NotifyData) String() string
type NotifyData_NotifyNewConnections ¶
type NotifyData_NotifyNewConnections struct {
NotifyNewConnections *NotifyNewConnections `protobuf:"bytes,1,opt,name=notify_new_connections,json=notifyNewConnections,proto3,oneof"`
}
type NotifyData_NotifyRemoveConnections ¶
type NotifyData_NotifyRemoveConnections struct {
NotifyRemoveConnections *NotifyRemoveConnections `protobuf:"bytes,2,opt,name=notify_remove_connections,json=notifyRemoveConnections,proto3,oneof"`
}
type NotifyNewConnections ¶
type NotifyNewConnections struct { Connections []*statistic.Connection `protobuf:"bytes,1,rep,name=connections,proto3" json:"connections,omitempty"` // contains filtered or unexported fields }
func (*NotifyNewConnections) Descriptor
deprecated
func (*NotifyNewConnections) Descriptor() ([]byte, []int)
Deprecated: Use NotifyNewConnections.ProtoReflect.Descriptor instead.
func (*NotifyNewConnections) GetConnections ¶
func (x *NotifyNewConnections) GetConnections() []*statistic.Connection
func (*NotifyNewConnections) ProtoMessage ¶
func (*NotifyNewConnections) ProtoMessage()
func (*NotifyNewConnections) ProtoReflect ¶
func (x *NotifyNewConnections) ProtoReflect() protoreflect.Message
func (*NotifyNewConnections) Reset ¶
func (x *NotifyNewConnections) Reset()
func (*NotifyNewConnections) String ¶
func (x *NotifyNewConnections) String() string
type NotifyRemoveConnections ¶
type NotifyRemoveConnections struct { Ids []uint64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"` // contains filtered or unexported fields }
func (*NotifyRemoveConnections) Descriptor
deprecated
func (*NotifyRemoveConnections) Descriptor() ([]byte, []int)
Deprecated: Use NotifyRemoveConnections.ProtoReflect.Descriptor instead.
func (*NotifyRemoveConnections) GetIds ¶
func (x *NotifyRemoveConnections) GetIds() []uint64
func (*NotifyRemoveConnections) ProtoMessage ¶
func (*NotifyRemoveConnections) ProtoMessage()
func (*NotifyRemoveConnections) ProtoReflect ¶
func (x *NotifyRemoveConnections) ProtoReflect() protoreflect.Message
func (*NotifyRemoveConnections) Reset ¶
func (x *NotifyRemoveConnections) Reset()
func (*NotifyRemoveConnections) String ¶
func (x *NotifyRemoveConnections) String() string
type TotalFlow ¶
type TotalFlow struct { Download uint64 `protobuf:"varint,1,opt,name=download,proto3" json:"download,omitempty"` Upload uint64 `protobuf:"varint,2,opt,name=upload,proto3" json:"upload,omitempty"` // contains filtered or unexported fields }
func (*TotalFlow) Descriptor
deprecated
func (*TotalFlow) GetDownload ¶
func (*TotalFlow) ProtoMessage ¶
func (*TotalFlow) ProtoMessage()
func (*TotalFlow) ProtoReflect ¶
func (x *TotalFlow) ProtoReflect() protoreflect.Message
type UnimplementedConnectionsServer ¶
type UnimplementedConnectionsServer struct { }
UnimplementedConnectionsServer must be embedded to have forward compatible implementations.
func (UnimplementedConnectionsServer) CloseConn ¶
func (UnimplementedConnectionsServer) CloseConn(context.Context, *ConnectionsId) (*emptypb.Empty, error)
func (UnimplementedConnectionsServer) Conns ¶
func (UnimplementedConnectionsServer) Conns(context.Context, *emptypb.Empty) (*ConnectionsInfo, error)
func (UnimplementedConnectionsServer) Notify ¶
func (UnimplementedConnectionsServer) Notify(*emptypb.Empty, Connections_NotifyServer) error
type UnsafeConnectionsServer ¶
type UnsafeConnectionsServer interface {
// contains filtered or unexported methods
}
UnsafeConnectionsServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to ConnectionsServer will result in compilation errors.