|
|
@ -376,7 +376,7 @@ module GRPC |
|
|
|
# This is a blocking call. |
|
|
|
# This is a blocking call. |
|
|
|
# |
|
|
|
# |
|
|
|
# * the call completes when the next call to provided block returns |
|
|
|
# * the call completes when the next call to provided block returns |
|
|
|
# * [False] |
|
|
|
# false |
|
|
|
# |
|
|
|
# |
|
|
|
# * the execution block parameters are two objects for sending and |
|
|
|
# * the execution block parameters are two objects for sending and |
|
|
|
# receiving responses, each of which blocks waiting for flow control. |
|
|
|
# receiving responses, each of which blocks waiting for flow control. |
|
|
@ -398,13 +398,9 @@ module GRPC |
|
|
|
# responses by throwing StopIteration, but can only happen either |
|
|
|
# responses by throwing StopIteration, but can only happen either |
|
|
|
# if bidi_call#writes_done is called. |
|
|
|
# if bidi_call#writes_done is called. |
|
|
|
# |
|
|
|
# |
|
|
|
# To terminate the RPC correctly the block: |
|
|
|
# To properly terminate the RPC, the responses should be completely iterated |
|
|
|
# |
|
|
|
# through; one way to do this is to loop on responses#next until no further |
|
|
|
# * must call bidi#writes_done and then |
|
|
|
# responses are available. |
|
|
|
# |
|
|
|
|
|
|
|
# * either return false as soon as there is no need for other responses |
|
|
|
|
|
|
|
# |
|
|
|
|
|
|
|
# * loop on responses#next until no further responses are available |
|
|
|
|
|
|
|
# |
|
|
|
# |
|
|
|
# == Errors == |
|
|
|
# == Errors == |
|
|
|
# An RuntimeError is raised if |
|
|
|
# An RuntimeError is raised if |
|
|
|