Documentation ¶
Index ¶
- Variables
- func NewTransportEndpoints() []*api.Endpoint
- func RegisterTransportHandler(s server.Server, hdlr TransportHandler, opts ...server.HandlerOption) error
- func RegisterTransportServer(s grpc.ServiceRegistrar, srv TransportServer)
- type Message
- type TransportClient
- type TransportHandler
- type TransportServer
- type TransportService
- type Transport_StreamClient
- type Transport_StreamServer
- type Transport_StreamService
- type Transport_StreamStream
- type UnimplementedTransportServer
- type UnsafeTransportServer
Constants ¶
This section is empty.
Variables ¶
var File_proto_transport_transport_proto protoreflect.FileDescriptor
var Transport_ServiceDesc = grpc.ServiceDesc{ ServiceName: "transport.Transport", HandlerType: (*TransportServer)(nil), Methods: []grpc.MethodDesc{}, Streams: []grpc.StreamDesc{ { StreamName: "Stream", Handler: _Transport_Stream_Handler, ServerStreams: true, ClientStreams: true, }, }, Metadata: "proto/transport/transport.proto", }
Transport_ServiceDesc is the grpc.ServiceDesc for Transport service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)
Functions ¶
func NewTransportEndpoints ¶
func RegisterTransportHandler ¶
func RegisterTransportHandler(s server.Server, hdlr TransportHandler, opts ...server.HandlerOption) error
func RegisterTransportServer ¶
func RegisterTransportServer(s grpc.ServiceRegistrar, srv TransportServer)
Types ¶
type Message ¶
type Message struct { Header map[string]string `` /* 153-byte string literal not displayed */ Body []byte `protobuf:"bytes,2,opt,name=body,proto3" json:"body,omitempty"` // contains filtered or unexported fields }
func (*Message) Descriptor
deprecated
func (*Message) ProtoMessage ¶
func (*Message) ProtoMessage()
func (*Message) ProtoReflect ¶
func (x *Message) ProtoReflect() protoreflect.Message
type TransportClient ¶
type TransportClient interface {
Stream(ctx context.Context, opts ...grpc.CallOption) (Transport_StreamClient, error)
}
TransportClient is the client API for Transport 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 NewTransportClient ¶
func NewTransportClient(cc grpc.ClientConnInterface) TransportClient
type TransportHandler ¶
type TransportHandler interface {
Stream(context.Context, Transport_StreamStream) error
}
type TransportServer ¶
type TransportServer interface { Stream(Transport_StreamServer) error // contains filtered or unexported methods }
TransportServer is the server API for Transport service. All implementations must embed UnimplementedTransportServer for forward compatibility
type TransportService ¶
type TransportService interface {
Stream(ctx context.Context, opts ...client.CallOption) (Transport_StreamService, error)
}
func NewTransportService ¶
func NewTransportService(name string, c client.Client) TransportService
type Transport_StreamClient ¶
type Transport_StreamServer ¶
type Transport_StreamService ¶
type Transport_StreamStream ¶
type UnimplementedTransportServer ¶
type UnimplementedTransportServer struct { }
UnimplementedTransportServer must be embedded to have forward compatible implementations.
func (UnimplementedTransportServer) Stream ¶
func (UnimplementedTransportServer) Stream(Transport_StreamServer) error
type UnsafeTransportServer ¶ added in v3.10.4
type UnsafeTransportServer interface {
// contains filtered or unexported methods
}
UnsafeTransportServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to TransportServer will result in compilation errors.