60 lines
		
	
	
		
			980 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			980 B
		
	
	
	
		
			Go
		
	
	
	
	
	
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{}
 | 
						|
 | 
						|
type rpcRequest struct {
 | 
						|
	rw          io.ReadWriter
 | 
						|
	payload     interface{}
 | 
						|
	codec       codec.Codec
 | 
						|
	header      metadata.Metadata
 | 
						|
	method      string
 | 
						|
	endpoint    string
 | 
						|
	contentType string
 | 
						|
	service     string
 | 
						|
	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
 | 
						|
}
 | 
						|
 | 
						|
func (r *rpcRequest) Codec() codec.Codec {
 | 
						|
	return r.codec
 | 
						|
}
 | 
						|
 | 
						|
func (r *rpcRequest) Header() metadata.Metadata {
 | 
						|
	return r.header
 | 
						|
}
 | 
						|
 | 
						|
func (r *rpcRequest) Read() ([]byte, error) {
 | 
						|
	return nil, nil
 | 
						|
}
 | 
						|
 | 
						|
func (r *rpcRequest) Stream() bool {
 | 
						|
	return r.stream
 | 
						|
}
 | 
						|
 | 
						|
func (r *rpcRequest) Body() interface{} {
 | 
						|
	return r.payload
 | 
						|
}
 |