Documentation ¶
Overview ¶
Package grpcutil contains gRPC lazy codecs, messages and a buf-based listener.
Index ¶
- Constants
- type LazyClient
- type LazyCodec
- type LazyMessage
- func (m *LazyMessage) Base64() string
- func (m *LazyMessage) Bytes() []byte
- func (m *LazyMessage) FromBase64(b64 string) (lm *LazyMessage, err error)
- func (m *LazyMessage) FromBytes(buf []byte) *LazyMessage
- func (m *LazyMessage) ProtoMessage()
- func (m *LazyMessage) Reset()
- func (m *LazyMessage) String() string
- type LazyMethodDesc
- type LazyStream
- type Listener
- type Server
Constants ¶
View Source
const ( P_GRPC = BertyCustomPrefix + 0x0002 //nolint:revive P_GRPC_WEB = BertyCustomPrefix + 0x0004 //nolint:revive P_GRPC_WEBSOCKET = BertyCustomPrefix + 0x0008 //nolint:revive P_GRPC_GATEWAY = BertyCustomPrefix + 0x0016 //nolint:revive )
View Source
const BertyCustomPrefix = 0xbe00
BertyCustomPrefix is a multiformat custom prefix
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LazyClient ¶ added in v2.202.0
type LazyClient struct {
// contains filtered or unexported fields
}
func NewLazyClient ¶ added in v2.202.0
func NewLazyClient(cc *grpc.ClientConn) *LazyClient
func (*LazyClient) InvokeStream ¶ added in v2.202.0
func (lc *LazyClient) InvokeStream(ctx context.Context, desc *LazyMethodDesc, in *LazyMessage, copts ...grpc.CallOption) (*LazyStream, error)
func (*LazyClient) InvokeUnary ¶ added in v2.202.0
func (lc *LazyClient) InvokeUnary(ctx context.Context, desc *LazyMethodDesc, in *LazyMessage, copts ...grpc.CallOption) (out *LazyMessage, err error)
type LazyCodec ¶
type LazyCodec struct{}
LazyCodec is basically a no-op grpc.Codec use to pass LazyMessage through grpc
func NewLazyCodec ¶
func NewLazyCodec() *LazyCodec
type LazyMessage ¶
type LazyMessage struct {
// contains filtered or unexported fields
}
LazyMessage is basically a no-op `proto.Message` used to pass serialized message through grpc
func NewLazyMessage ¶
func NewLazyMessage() *LazyMessage
func (*LazyMessage) Base64 ¶
func (m *LazyMessage) Base64() string
func (*LazyMessage) Bytes ¶
func (m *LazyMessage) Bytes() []byte
func (*LazyMessage) FromBase64 ¶
func (m *LazyMessage) FromBase64(b64 string) (lm *LazyMessage, err error)
func (*LazyMessage) FromBytes ¶
func (m *LazyMessage) FromBytes(buf []byte) *LazyMessage
func (*LazyMessage) ProtoMessage ¶
func (m *LazyMessage) ProtoMessage()
func (*LazyMessage) Reset ¶
func (m *LazyMessage) Reset()
func (*LazyMessage) String ¶
func (m *LazyMessage) String() string
type LazyMethodDesc ¶ added in v2.202.0
type LazyStream ¶ added in v2.202.0
type LazyStream struct { // used to close the stream context.CancelFunc grpc.ClientStream // contains filtered or unexported fields }
func (*LazyStream) Close ¶ added in v2.202.0
func (s *LazyStream) Close() (err error)
func (*LazyStream) ID ¶ added in v2.202.0
func (s *LazyStream) ID() uint64
Click to show internal directories.
Click to hide internal directories.