All checks were successful
test / test (push) Successful in 1m53s
move to v4 micro Co-authored-by: Vasiliy Tolstov <v.tolstov@unistack.org> Reviewed-on: #195 Co-authored-by: Evstigneev Denis <danteevstigneev@yandex.ru> Co-committed-by: Evstigneev Denis <danteevstigneev@yandex.ru>
41 lines
685 B
Go
41 lines
685 B
Go
package grpc
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go.unistack.org/micro/v4/server"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
// rpcStream implements a server side Stream.
|
|
type rpcStream struct {
|
|
// embed the grpc stream so we can access it
|
|
grpc.ServerStream
|
|
|
|
request server.Request
|
|
}
|
|
|
|
func (r *rpcStream) Close() error {
|
|
return nil
|
|
}
|
|
|
|
func (r *rpcStream) Error() error {
|
|
return nil
|
|
}
|
|
|
|
func (r *rpcStream) Request() server.Request {
|
|
return r.request
|
|
}
|
|
|
|
func (r *rpcStream) Context() context.Context {
|
|
return r.ServerStream.Context()
|
|
}
|
|
|
|
func (r *rpcStream) Send(m interface{}) error {
|
|
return r.ServerStream.SendMsg(m)
|
|
}
|
|
|
|
func (r *rpcStream) Recv(m interface{}) error {
|
|
return r.ServerStream.RecvMsg(m)
|
|
}
|