Package stream encapsulates streams within streams
func New(service, endpoint string, req interface{}, s Stream) server.Stream
New returns a new encapsulated stream Proto stream within a server.Stream
type Stream interface { Context() context.Context SendMsg(interface{}) error RecvMsg(interface{}) error Close() error }