| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 | gRPC AsyncIO API================.. module:: grpc.experimental.aioOverview--------gRPC AsyncIO API is a new version of gRPC Python whose architecture istailored to AsyncIO. Underlying, it is using C-Core's callback API, andreplaced all IO operations with methods provided by the AsyncIO library.This stack currently is under active development. Feel free to offersuggestions by opening issues on `grpc/grpc <https://github.com/grpc/grpc>`_.The design doc can be found here as `gRFC <https://github.com/grpc/proposal/pull/155>`_.Module Contents---------------Create Client^^^^^^^^^^^^^.. autofunction:: insecure_channel.. autofunction:: secure_channelCreate Server^^^^^^^^^^^^^.. autofunction:: serverChannel Object^^^^^^^^^^^^^^.. autoclass:: ChannelServer Object^^^^^^^^^^^^^.. autoclass:: ServergRPC Exceptions^^^^^^^^^^^^^^^.. autoexception:: BaseError.. autoexception:: UsageError.. autoexception:: AbortError.. autoexception:: InternalError.. autoexception:: AioRpcErrorClient-Side Context^^^^^^^^^^^^^^^^^^^^^^^.. autoclass:: Call.. autoclass:: UnaryUnaryCall.. autoclass:: UnaryStreamCall.. autoclass:: StreamUnaryCall.. autoclass:: StreamStreamCallClient-Side Interceptor^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^.. autoclass:: ClientCallDetails.. autoclass:: InterceptedUnaryUnaryCall.. autoclass:: UnaryUnaryClientInterceptor.. Service-Side Context.. ^^^^^^^^^^^^^^^^^^^^.. .. autoclass:: ServicerContext.. Service-Side Interceptor.. ^^^^^^^^^^^^^^^^^^^^^^^^.. .. autoclass:: ServerInterceptorMulti-Callable Interfaces^^^^^^^^^^^^^^^^^^^^^^^^^.. autoclass:: UnaryUnaryMultiCallable()    :undoc-members: __init__.. autoclass:: UnaryStreamMultiCallable().. autoclass:: StreamUnaryMultiCallable().. autoclass:: StreamStreamMultiCallable().. Future Interfaces.. ^^^^^^^^^^^^^^^^^.. .. autoexception:: FutureTimeoutError.. .. autoexception:: FutureCancelledError.. .. autoclass:: Future.. Compression.. ^^^^^^^^^^^.. .. autoclass:: Compression
 |