grpc v0.3.0-alpha.1 GRPC.Client.Stream
A struct that streaming clients get from rpc function calls and use to send further requests.
Fields
:channel
-GRPC.Channel
, the channel established by client:payload
- data used by adapter in a request:path
- the request path to sent:marshal
- a function encoding the request:unmarshal
- a function decoding the reply:req_stream
- indicates if request is streaming:res_stream
- indicates if reply is streaming
Summary
Types
t()
t :: %GRPC.Client.Stream{canceled: boolean, channel: GRPC.Channel.t, marshal: marshal, path: String.t, payload: stream_payload, req_stream: boolean, res_stream: boolean, unmarshal: unmarshal}