Private Member Functions | |
bool | _done_writing_flag (self) |
StreamStreamCall class wich uses an alternative response iterator.
Definition at line 982 of file aio/_interceptor.py.
|
private |
Definition at line 1003 of file aio/_interceptor.py.
None grpc.aio._interceptor.StreamStreamCallResponseIterator.done_writing | ( | self | ) |
Notifies server that the client is done sending messages. After done_writing is called, any additional invocation to the write function will fail. This function is idempotent.
Reimplemented from grpc.aio._base_call.StreamStreamCall.
Definition at line 996 of file aio/_interceptor.py.
ResponseType grpc.aio._interceptor.StreamStreamCallResponseIterator.read | ( | self | ) |
Reads one message from the stream. Read operations must be serialized when called from multiple coroutines. Returns: A response message, or an `grpc.aio.EOF` to indicate the end of the stream.
Reimplemented from grpc.aio._base_call.StreamStreamCall.
Definition at line 985 of file aio/_interceptor.py.
None grpc.aio._interceptor.StreamStreamCallResponseIterator.write | ( | self, | |
RequestType | request | ||
) |
Writes one message to the stream. Raises: An RpcError exception if the write failed.
Reimplemented from grpc.aio._base_call.StreamStreamCall.
Definition at line 990 of file aio/_interceptor.py.