micro-server-grpc/request.go

60 lines
980 B
Go
Raw Normal View History

2019-06-03 20:44:43 +03:00
package grpc
import (
"io"
"go.unistack.org/micro/v3/codec"
"go.unistack.org/micro/v3/metadata"
"go.unistack.org/micro/v3/server"
)
var _ server.Request = &rpcRequest{}
2019-06-03 20:44:43 +03:00
type rpcRequest struct {
rw io.ReadWriter
payload interface{}
codec codec.Codec
header metadata.Metadata
2019-06-03 20:44:43 +03:00
method string
endpoint string
2019-06-03 20:44:43 +03:00
contentType string
service string
2019-06-03 20:44:43 +03:00
stream bool
}
func (r *rpcRequest) ContentType() string {
return r.contentType
}
func (r *rpcRequest) Service() string {
return r.service
}
func (r *rpcRequest) Method() string {
return r.method
}
func (r *rpcRequest) Endpoint() string {
return r.endpoint
2019-06-03 20:44:43 +03:00
}
func (r *rpcRequest) Codec() codec.Codec {
2019-06-03 20:44:43 +03:00
return r.codec
}
func (r *rpcRequest) Header() metadata.Metadata {
2019-06-03 20:44:43 +03:00
return r.header
}
func (r *rpcRequest) Read() ([]byte, error) {
return nil, nil
2019-06-03 20:44:43 +03:00
}
func (r *rpcRequest) Stream() bool {
return r.stream
}
func (r *rpcRequest) Body() interface{} {
return r.payload
}