예제 #1
0
파일: _call.py 프로젝트: sunhuiyong/grpc
 def cancel(self) -> bool:
     return self._cancel(
         cygrpc.AioRpcStatus(cygrpc.StatusCode.cancelled,
                             _LOCAL_CANCELLATION_DETAILS, None, None))
예제 #2
0
파일: _call.py 프로젝트: sunhuiyong/grpc
 def __del__(self) -> None:
     if not self._status.done():
         self._cancel(
             cygrpc.AioRpcStatus(cygrpc.StatusCode.cancelled,
                                 _GC_CANCELLATION_DETAILS, None, None))