(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None)
| 892 | |
| 893 | @staticmethod |
| 894 | def WatchNode(request, |
| 895 | target, |
| 896 | options=(), |
| 897 | channel_credentials=None, |
| 898 | call_credentials=None, |
| 899 | insecure=False, |
| 900 | compression=None, |
| 901 | wait_for_ready=None, |
| 902 | timeout=None, |
| 903 | metadata=None): |
| 904 | return grpc.experimental.unary_stream( |
| 905 | request, |
| 906 | target, |
| 907 | '/tree.NodeEventsProvider/WatchNode', |
| 908 | cells__tree__pb2.WatchNodeRequest.SerializeToString, |
| 909 | cells__tree__pb2.WatchNodeResponse.FromString, |
| 910 | options, |
| 911 | channel_credentials, |
| 912 | insecure, |
| 913 | call_credentials, |
| 914 | compression, |
| 915 | wait_for_ready, |
| 916 | timeout, |
| 917 | metadata, |
| 918 | _registered_method=True) |
| 919 | |
| 920 | |
| 921 | class SearcherStub(object): |
nothing calls this directly
no outgoing calls
no test coverage detected