genindex.html 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172
  1. <!DOCTYPE html>
  2. <!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
  3. <!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
  4. <head>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Index &mdash; grpcio 0.15.0 documentation</title>
  8. <link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
  9. <link rel="top" title="grpcio 0.15.0 documentation" href="index.html"/>
  10. <script src="_static/js/modernizr.min.js"></script>
  11. </head>
  12. <body class="wy-body-for-nav" role="document">
  13. <div class="wy-grid-for-nav">
  14. <nav data-toggle="wy-nav-shift" class="wy-nav-side">
  15. <div class="wy-side-scroll">
  16. <div class="wy-side-nav-search">
  17. <a href="index.html" class="icon icon-home"> grpcio
  18. </a>
  19. <div class="version">
  20. 0.15.0
  21. </div>
  22. <div role="search">
  23. <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
  24. <input type="text" name="q" placeholder="Search docs" />
  25. <input type="hidden" name="check_keywords" value="yes" />
  26. <input type="hidden" name="area" value="default" />
  27. </form>
  28. </div>
  29. </div>
  30. <div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
  31. <ul>
  32. <li class="toctree-l1"><a class="reference internal" href="grpc.html">grpc package</a></li>
  33. </ul>
  34. </div>
  35. </div>
  36. </nav>
  37. <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
  38. <nav class="wy-nav-top" role="navigation" aria-label="top navigation">
  39. <i data-toggle="wy-nav-top" class="fa fa-bars"></i>
  40. <a href="index.html">grpcio</a>
  41. </nav>
  42. <div class="wy-nav-content">
  43. <div class="rst-content">
  44. <div role="navigation" aria-label="breadcrumbs navigation">
  45. <ul class="wy-breadcrumbs">
  46. <li><a href="index.html">Docs</a> &raquo;</li>
  47. <li></li>
  48. <li class="wy-breadcrumbs-aside">
  49. </li>
  50. </ul>
  51. <hr/>
  52. </div>
  53. <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
  54. <div itemprop="articleBody">
  55. <h1 id="index">Index</h1>
  56. <div class="genindex-jumpbox">
  57. <a href="#A"><strong>A</strong></a>
  58. | <a href="#B"><strong>B</strong></a>
  59. | <a href="#C"><strong>C</strong></a>
  60. | <a href="#D"><strong>D</strong></a>
  61. | <a href="#E"><strong>E</strong></a>
  62. | <a href="#F"><strong>F</strong></a>
  63. | <a href="#G"><strong>G</strong></a>
  64. | <a href="#H"><strong>H</strong></a>
  65. | <a href="#I"><strong>I</strong></a>
  66. | <a href="#J"><strong>J</strong></a>
  67. | <a href="#K"><strong>K</strong></a>
  68. | <a href="#L"><strong>L</strong></a>
  69. | <a href="#M"><strong>M</strong></a>
  70. | <a href="#N"><strong>N</strong></a>
  71. | <a href="#O"><strong>O</strong></a>
  72. | <a href="#P"><strong>P</strong></a>
  73. | <a href="#R"><strong>R</strong></a>
  74. | <a href="#S"><strong>S</strong></a>
  75. | <a href="#T"><strong>T</strong></a>
  76. | <a href="#U"><strong>U</strong></a>
  77. | <a href="#V"><strong>V</strong></a>
  78. | <a href="#W"><strong>W</strong></a>
  79. </div>
  80. <h2 id="A">A</h2>
  81. <table style="width: 100%" class="indextable genindextable"><tr>
  82. <td style="width: 33%" valign="top"><dl>
  83. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.abandonment.Abandoned">Abandoned</a>
  84. </dt>
  85. <dt><a href="grpc.html#grpc.StatusCode.ABORTED">ABORTED (grpc.StatusCode attribute)</a>
  86. </dt>
  87. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Abortion">Abortion (class in grpc.framework.interfaces.face.face)</a>
  88. </dt>
  89. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Abortion.Kind">Abortion.Kind (class in grpc.framework.interfaces.face.face)</a>
  90. </dt>
  91. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.AbortionError">AbortionError</a>
  92. </dt>
  93. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Link.accept_ticket">accept_ticket() (grpc.framework.interfaces.links.links.Link method)</a>
  94. </dt>
  95. <dt><a href="grpc.html#grpc.access_token_call_credentials">access_token_call_credentials() (in module grpc)</a>
  96. </dt>
  97. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.activated.Activated">Activated (class in grpc.framework.foundation.activated)</a>
  98. </dt>
  99. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.RpcContext.add_abortion_callback">add_abortion_callback() (grpc.framework.interfaces.face.face.RpcContext method)</a>
  100. </dt>
  101. <dt><a href="grpc.html#grpc.RpcContext.add_callback">add_callback() (grpc.RpcContext method)</a>
  102. </dt>
  103. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.future.Future.add_done_callback">add_done_callback() (grpc.framework.foundation.future.Future method)</a>
  104. </dt>
  105. <dd><dl>
  106. <dt><a href="grpc.html#grpc.Future.add_done_callback">(grpc.Future method)</a>
  107. </dt>
  108. </dl></dd>
  109. <dt><a href="grpc.html#grpc.Server.add_generic_rpc_handlers">add_generic_rpc_handlers() (grpc.Server method)</a>
  110. </dt>
  111. </dl></td>
  112. <td style="width: 33%" valign="top"><dl>
  113. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.End.add_idle_action">add_idle_action() (grpc.framework.interfaces.base.base.End method)</a>
  114. </dt>
  115. <dt><a href="grpc.beta.html#grpc.beta.interfaces.Server.add_insecure_port">add_insecure_port() (grpc.beta.interfaces.Server method)</a>
  116. </dt>
  117. <dd><dl>
  118. <dt><a href="grpc.html#grpc.Server.add_insecure_port">(grpc.Server method)</a>
  119. </dt>
  120. </dl></dd>
  121. <dt><a href="grpc.beta.html#grpc.beta.interfaces.Server.add_secure_port">add_secure_port() (grpc.beta.interfaces.Server method)</a>
  122. </dt>
  123. <dd><dl>
  124. <dt><a href="grpc.html#grpc.Server.add_secure_port">(grpc.Server method)</a>
  125. </dt>
  126. </dl></dd>
  127. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.OperationContext.add_termination_callback">add_termination_callback() (grpc.framework.interfaces.base.base.OperationContext method)</a>
  128. </dt>
  129. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.relay.Relay.add_value">add_value() (grpc.framework.foundation.relay.Relay method)</a>
  130. </dt>
  131. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Operator.advance">advance() (grpc.framework.interfaces.base.base.Operator method)</a>
  132. </dt>
  133. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Subscription.allowance">allowance (grpc.framework.interfaces.base.base.Subscription attribute)</a>
  134. </dt>
  135. <dd><dl>
  136. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.allowance">(grpc.framework.interfaces.links.links.Ticket attribute)</a>
  137. </dt>
  138. </dl></dd>
  139. <dt><a href="grpc.html#grpc.StatusCode.ALREADY_EXISTS">ALREADY_EXISTS (grpc.StatusCode attribute)</a>
  140. </dt>
  141. <dt><a href="grpc.html#grpc.AuthMetadataContext">AuthMetadataContext (class in grpc)</a>
  142. </dt>
  143. <dt><a href="grpc.html#grpc.AuthMetadataPlugin">AuthMetadataPlugin (class in grpc)</a>
  144. </dt>
  145. <dt><a href="grpc.html#grpc.AuthMetadataPluginCallback">AuthMetadataPluginCallback (class in grpc)</a>
  146. </dt>
  147. </dl></td>
  148. </tr></table>
  149. <h2 id="B">B</h2>
  150. <table style="width: 100%" class="indextable genindextable"><tr>
  151. <td style="width: 33%" valign="top"><dl>
  152. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.GenericStub.blocking_stream_unary">blocking_stream_unary() (grpc.framework.interfaces.face.face.GenericStub method)</a>
  153. </dt>
  154. </dl></td>
  155. <td style="width: 33%" valign="top"><dl>
  156. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.GenericStub.blocking_unary_unary">blocking_unary_unary() (grpc.framework.interfaces.face.face.GenericStub method)</a>
  157. </dt>
  158. </dl></td>
  159. </tr></table>
  160. <h2 id="C">C</h2>
  161. <table style="width: 100%" class="indextable genindextable"><tr>
  162. <td style="width: 33%" valign="top"><dl>
  163. <dt><a href="grpc.html#grpc.Call">Call (class in grpc)</a>
  164. </dt>
  165. <dd><dl>
  166. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Call">(class in grpc.framework.interfaces.face.face)</a>
  167. </dt>
  168. </dl></dd>
  169. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.callable_util.call_logging_exceptions">call_logging_exceptions() (in module grpc.framework.foundation.callable_util)</a>
  170. </dt>
  171. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Protocol.Kind.CALL_OPTION">CALL_OPTION (grpc.framework.interfaces.links.links.Protocol.Kind attribute)</a>
  172. </dt>
  173. <dt><a href="grpc.html#grpc.CallCredentials">CallCredentials (class in grpc)</a>
  174. </dt>
  175. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.future.Future.cancel">cancel() (grpc.framework.foundation.future.Future method)</a>
  176. </dt>
  177. <dd><dl>
  178. <dt><a href="grpc.html#grpc.Future.cancel">(grpc.Future method)</a>
  179. </dt>
  180. <dt><a href="grpc.html#grpc.RpcContext.cancel">(grpc.RpcContext method)</a>
  181. </dt>
  182. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.OperationContext.cancel">(grpc.framework.interfaces.base.base.OperationContext method)</a>
  183. </dt>
  184. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.RpcContext.cancel">(grpc.framework.interfaces.face.face.RpcContext method)</a>
  185. </dt>
  186. </dl></dd>
  187. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.Termination.CANCELLATION">CANCELLATION (grpc.framework.interfaces.links.links.Ticket.Termination attribute)</a>
  188. </dt>
  189. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.CancellationError">CancellationError</a>
  190. </dt>
  191. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Outcome.Kind.CANCELLED">CANCELLED (grpc.framework.interfaces.base.base.Outcome.Kind attribute)</a>
  192. </dt>
  193. <dd><dl>
  194. <dt><a href="grpc.html#grpc.StatusCode.CANCELLED">(grpc.StatusCode attribute)</a>
  195. </dt>
  196. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Abortion.Kind.CANCELLED">(grpc.framework.interfaces.face.face.Abortion.Kind attribute)</a>
  197. </dt>
  198. </dl></dd>
  199. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.future.Future.cancelled">cancelled() (grpc.framework.foundation.future.Future method)</a>
  200. </dt>
  201. <dd><dl>
  202. <dt><a href="grpc.html#grpc.Future.cancelled">(grpc.Future method)</a>
  203. </dt>
  204. </dl></dd>
  205. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.future.CancelledError">CancelledError</a>
  206. </dt>
  207. <dt><a href="grpc.framework.common.html#grpc.framework.common.cardinality.Cardinality">Cardinality (class in grpc.framework.common.cardinality)</a>
  208. </dt>
  209. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.MethodImplementation.cardinality">cardinality (grpc.framework.interfaces.face.face.MethodImplementation attribute)</a>
  210. </dt>
  211. <dt><a href="grpc.html#grpc.Channel">Channel (class in grpc)</a>
  212. </dt>
  213. <dd><dl>
  214. <dt><a href="grpc.beta.html#grpc.beta.implementations.Channel">(class in grpc.beta.implementations)</a>
  215. </dt>
  216. </dl></dd>
  217. <dt><a href="grpc.html#grpc.channel_ready_future">channel_ready_future() (in module grpc)</a>
  218. </dt>
  219. <dd><dl>
  220. <dt><a href="grpc.beta.html#grpc.beta.utilities.channel_ready_future">(in module grpc.beta.utilities)</a>
  221. </dt>
  222. </dl></dd>
  223. <dt><a href="grpc.html#grpc.ChannelConnectivity">ChannelConnectivity (class in grpc)</a>
  224. </dt>
  225. </dl></td>
  226. <td style="width: 33%" valign="top"><dl>
  227. <dt><a href="grpc.html#grpc.ChannelCredentials">ChannelCredentials (class in grpc)</a>
  228. </dt>
  229. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Completion.code">code (grpc.framework.interfaces.base.base.Completion attribute)</a>
  230. </dt>
  231. <dd><dl>
  232. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.NoSuchMethodError.code">(grpc.framework.interfaces.base.base.NoSuchMethodError attribute)</a>
  233. </dt>
  234. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Outcome.code">(grpc.framework.interfaces.base.base.Outcome attribute)</a>
  235. </dt>
  236. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Abortion.code">(grpc.framework.interfaces.face.face.Abortion attribute)</a>
  237. </dt>
  238. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.code">(grpc.framework.interfaces.links.links.Ticket attribute)</a>
  239. </dt>
  240. </dl></dd>
  241. <dt><a href="grpc.html#grpc.Call.code">code() (grpc.Call method)</a>
  242. </dt>
  243. <dd><dl>
  244. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Call.code">(grpc.framework.interfaces.face.face.Call method)</a>
  245. </dt>
  246. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.ServicerContext.code">(grpc.framework.interfaces.face.face.ServicerContext method)</a>
  247. </dt>
  248. </dl></dd>
  249. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.ResponseReceiver.complete">complete() (grpc.framework.interfaces.face.face.ResponseReceiver method)</a>
  250. </dt>
  251. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Outcome.Kind.COMPLETED">COMPLETED (grpc.framework.interfaces.base.base.Outcome.Kind attribute)</a>
  252. </dt>
  253. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Completion">Completion (class in grpc.framework.interfaces.base.base)</a>
  254. </dt>
  255. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.Termination.COMPLETION">COMPLETION (grpc.framework.interfaces.links.links.Ticket.Termination attribute)</a>
  256. </dt>
  257. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.utilities.completion">completion() (in module grpc.framework.interfaces.base.utilities)</a>
  258. </dt>
  259. <dt><a href="grpc.html#grpc.composite_call_credentials">composite_call_credentials() (in module grpc)</a>
  260. </dt>
  261. <dt><a href="grpc.html#grpc.composite_channel_credentials">composite_channel_credentials() (in module grpc)</a>
  262. </dt>
  263. <dt><a href="grpc.html#grpc.ChannelConnectivity.CONNECTING">CONNECTING (grpc.ChannelConnectivity attribute)</a>, <a href="grpc.html#grpc.ChannelConnectivity.CONNECTING">[1]</a>
  264. </dt>
  265. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.stream.Consumer.consume">consume() (grpc.framework.foundation.stream.Consumer method)</a>
  266. </dt>
  267. <dd><dl>
  268. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.stream_util.IterableConsumer.consume">(grpc.framework.foundation.stream_util.IterableConsumer method)</a>
  269. </dt>
  270. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.stream_util.ThreadSwitchingConsumer.consume">(grpc.framework.foundation.stream_util.ThreadSwitchingConsumer method)</a>
  271. </dt>
  272. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.stream_util.TransformingConsumer.consume">(grpc.framework.foundation.stream_util.TransformingConsumer method)</a>
  273. </dt>
  274. </dl></dd>
  275. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.stream.Consumer.consume_and_terminate">consume_and_terminate() (grpc.framework.foundation.stream.Consumer method)</a>
  276. </dt>
  277. <dd><dl>
  278. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.stream_util.IterableConsumer.consume_and_terminate">(grpc.framework.foundation.stream_util.IterableConsumer method)</a>
  279. </dt>
  280. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.stream_util.ThreadSwitchingConsumer.consume_and_terminate">(grpc.framework.foundation.stream_util.ThreadSwitchingConsumer method)</a>
  281. </dt>
  282. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.stream_util.TransformingConsumer.consume_and_terminate">(grpc.framework.foundation.stream_util.TransformingConsumer method)</a>
  283. </dt>
  284. </dl></dd>
  285. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.stream.Consumer">Consumer (class in grpc.framework.foundation.stream)</a>
  286. </dt>
  287. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.ProtocolReceiver.context">context() (grpc.framework.interfaces.base.base.ProtocolReceiver method)</a>
  288. </dt>
  289. </dl></td>
  290. </tr></table>
  291. <h2 id="D">D</h2>
  292. <table style="width: 100%" class="indextable genindextable"><tr>
  293. <td style="width: 33%" valign="top"><dl>
  294. <dt><a href="grpc.html#grpc.StatusCode.DATA_LOSS">DATA_LOSS (grpc.StatusCode attribute)</a>
  295. </dt>
  296. <dt><a href="grpc.html#grpc.StatusCode.DEADLINE_EXCEEDED">DEADLINE_EXCEEDED (grpc.StatusCode attribute)</a>
  297. </dt>
  298. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.NoSuchMethodError.details">details (grpc.framework.interfaces.base.base.NoSuchMethodError attribute)</a>
  299. </dt>
  300. <dd><dl>
  301. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Outcome.details">(grpc.framework.interfaces.base.base.Outcome attribute)</a>
  302. </dt>
  303. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Abortion.details">(grpc.framework.interfaces.face.face.Abortion attribute)</a>
  304. </dt>
  305. </dl></dd>
  306. <dt><a href="grpc.html#grpc.Call.details">details() (grpc.Call method)</a>
  307. </dt>
  308. <dd><dl>
  309. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Call.details">(grpc.framework.interfaces.face.face.Call method)</a>
  310. </dt>
  311. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.ServicerContext.details">(grpc.framework.interfaces.face.face.ServicerContext method)</a>
  312. </dt>
  313. </dl></dd>
  314. <dt><a href="grpc.beta.html#grpc.beta.interfaces.GRPCInvocationContext.disable_next_request_compression">disable_next_request_compression() (grpc.beta.interfaces.GRPCInvocationContext method)</a>
  315. </dt>
  316. </dl></td>
  317. <td style="width: 33%" valign="top"><dl>
  318. <dt><a href="grpc.beta.html#grpc.beta.interfaces.GRPCServicerContext.disable_next_response_compression">disable_next_response_compression() (grpc.beta.interfaces.GRPCServicerContext method)</a>
  319. </dt>
  320. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.future.Future.done">done() (grpc.framework.foundation.future.Future method)</a>
  321. </dt>
  322. <dd><dl>
  323. <dt><a href="grpc.html#grpc.Future.done">(grpc.Future method)</a>
  324. </dt>
  325. </dl></dd>
  326. <dt><a href="grpc.beta.html#grpc.beta.implementations.dynamic_stub">dynamic_stub() (in module grpc.beta.implementations)</a>
  327. </dt>
  328. <dd><dl>
  329. <dt><a href="grpc.framework.crust.html#grpc.framework.crust.implementations.dynamic_stub">(in module grpc.framework.crust.implementations)</a>
  330. </dt>
  331. </dl></dd>
  332. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.DynamicStub">DynamicStub (class in grpc.framework.interfaces.face.face)</a>
  333. </dt>
  334. </dl></td>
  335. </tr></table>
  336. <h2 id="E">E</h2>
  337. <table style="width: 100%" class="indextable genindextable"><tr>
  338. <td style="width: 33%" valign="top"><dl>
  339. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.End">End (class in grpc.framework.interfaces.base.base)</a>
  340. </dt>
  341. <dt><a href="grpc.framework.common.html#grpc.framework.common.style.Service.EVENT">EVENT (grpc.framework.common.style.Service attribute)</a>
  342. </dt>
  343. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.StreamStreamMultiCallable.event">event() (grpc.framework.interfaces.face.face.StreamStreamMultiCallable method)</a>
  344. </dt>
  345. <dd><dl>
  346. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.StreamUnaryMultiCallable.event">(grpc.framework.interfaces.face.face.StreamUnaryMultiCallable method)</a>
  347. </dt>
  348. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.UnaryStreamMultiCallable.event">(grpc.framework.interfaces.face.face.UnaryStreamMultiCallable method)</a>
  349. </dt>
  350. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.UnaryUnaryMultiCallable.event">(grpc.framework.interfaces.face.face.UnaryUnaryMultiCallable method)</a>
  351. </dt>
  352. </dl></dd>
  353. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.GenericStub.event_stream_stream">event_stream_stream() (grpc.framework.interfaces.face.face.GenericStub method)</a>
  354. </dt>
  355. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.GenericStub.event_stream_unary">event_stream_unary() (grpc.framework.interfaces.face.face.GenericStub method)</a>
  356. </dt>
  357. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.GenericStub.event_unary_stream">event_unary_stream() (grpc.framework.interfaces.face.face.GenericStub method)</a>
  358. </dt>
  359. </dl></td>
  360. <td style="width: 33%" valign="top"><dl>
  361. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.GenericStub.event_unary_unary">event_unary_unary() (grpc.framework.interfaces.face.face.GenericStub method)</a>
  362. </dt>
  363. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.callable_util.Outcome.exception">exception (grpc.framework.foundation.callable_util.Outcome attribute)</a>
  364. </dt>
  365. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.future.Future.exception">exception() (grpc.framework.foundation.future.Future method)</a>
  366. </dt>
  367. <dd><dl>
  368. <dt><a href="grpc.html#grpc.Future.exception">(grpc.Future method)</a>
  369. </dt>
  370. </dl></dd>
  371. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.Termination.EXPIRATION">EXPIRATION (grpc.framework.interfaces.links.links.Ticket.Termination attribute)</a>
  372. </dt>
  373. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.ExpirationError">ExpirationError</a>
  374. </dt>
  375. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Outcome.Kind.EXPIRED">EXPIRED (grpc.framework.interfaces.base.base.Outcome.Kind attribute)</a>
  376. </dt>
  377. <dd><dl>
  378. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Abortion.Kind.EXPIRED">(grpc.framework.interfaces.face.face.Abortion.Kind attribute)</a>
  379. </dt>
  380. </dl></dd>
  381. </dl></td>
  382. </tr></table>
  383. <h2 id="F">F</h2>
  384. <table style="width: 100%" class="indextable genindextable"><tr>
  385. <td style="width: 33%" valign="top"><dl>
  386. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.OperationContext.fail">fail() (grpc.framework.interfaces.base.base.OperationContext method)</a>
  387. </dt>
  388. <dt><a href="grpc.html#grpc.StatusCode.FAILED_PRECONDITION">FAILED_PRECONDITION (grpc.StatusCode attribute)</a>
  389. </dt>
  390. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Subscription.Kind.FULL">FULL (grpc.framework.interfaces.base.base.Subscription.Kind attribute)</a>
  391. </dt>
  392. <dd><dl>
  393. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.Subscription.FULL">(grpc.framework.interfaces.links.links.Ticket.Subscription attribute)</a>
  394. </dt>
  395. </dl></dd>
  396. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.utilities.full_subscription">full_subscription() (in module grpc.framework.interfaces.base.utilities)</a>
  397. </dt>
  398. <dt><a href="grpc.html#grpc.Future">Future (class in grpc)</a>
  399. </dt>
  400. <dd><dl>
  401. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.future.Future">(class in grpc.framework.foundation.future)</a>
  402. </dt>
  403. </dl></dd>
  404. </dl></td>
  405. <td style="width: 33%" valign="top"><dl>
  406. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.StreamUnaryMultiCallable.future">future() (grpc.framework.interfaces.face.face.StreamUnaryMultiCallable method)</a>
  407. </dt>
  408. <dd><dl>
  409. <dt><a href="grpc.html#grpc.StreamUnaryMultiCallable.future">(grpc.StreamUnaryMultiCallable method)</a>
  410. </dt>
  411. <dt><a href="grpc.html#grpc.UnaryUnaryMultiCallable.future">(grpc.UnaryUnaryMultiCallable method)</a>
  412. </dt>
  413. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.UnaryUnaryMultiCallable.future">(grpc.framework.interfaces.face.face.UnaryUnaryMultiCallable method)</a>
  414. </dt>
  415. </dl></dd>
  416. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.GenericStub.future_stream_unary">future_stream_unary() (grpc.framework.interfaces.face.face.GenericStub method)</a>
  417. </dt>
  418. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.GenericStub.future_unary_unary">future_unary_unary() (grpc.framework.interfaces.face.face.GenericStub method)</a>
  419. </dt>
  420. <dt><a href="grpc.html#grpc.FutureCancelledError">FutureCancelledError</a>
  421. </dt>
  422. <dt><a href="grpc.html#grpc.FutureTimeoutError">FutureTimeoutError</a>
  423. </dt>
  424. </dl></td>
  425. </tr></table>
  426. <h2 id="G">G</h2>
  427. <table style="width: 100%" class="indextable genindextable"><tr>
  428. <td style="width: 33%" valign="top"><dl>
  429. <dt><a href="grpc.beta.html#grpc.beta.implementations.generic_stub">generic_stub() (in module grpc.beta.implementations)</a>
  430. </dt>
  431. <dd><dl>
  432. <dt><a href="grpc.framework.crust.html#grpc.framework.crust.implementations.generic_stub">(in module grpc.framework.crust.implementations)</a>
  433. </dt>
  434. </dl></dd>
  435. <dt><a href="grpc.html#grpc.GenericRpcHandler">GenericRpcHandler (class in grpc)</a>
  436. </dt>
  437. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.GenericStub">GenericStub (class in grpc.framework.interfaces.face.face)</a>
  438. </dt>
  439. <dt><a href="grpc.beta.html#grpc.beta.implementations.google_call_credentials">google_call_credentials() (in module grpc.beta.implementations)</a>
  440. </dt>
  441. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.NoSuchMethodError.group">group (grpc.framework.interfaces.face.face.NoSuchMethodError attribute)</a>
  442. </dt>
  443. <dd><dl>
  444. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.group">(grpc.framework.interfaces.links.links.Ticket attribute)</a>
  445. </dt>
  446. </dl></dd>
  447. <dt><a href="grpc.html#module-grpc">grpc (module)</a>
  448. </dt>
  449. <dt><a href="grpc.beta.html#module-grpc.beta">grpc.beta (module)</a>
  450. </dt>
  451. <dt><a href="grpc.beta.html#module-grpc.beta.implementations">grpc.beta.implementations (module)</a>
  452. </dt>
  453. <dt><a href="grpc.beta.html#module-grpc.beta.interfaces">grpc.beta.interfaces (module)</a>
  454. </dt>
  455. <dt><a href="grpc.beta.html#module-grpc.beta.utilities">grpc.beta.utilities (module)</a>
  456. </dt>
  457. <dt><a href="grpc.framework.html#module-grpc.framework">grpc.framework (module)</a>
  458. </dt>
  459. <dt><a href="grpc.framework.common.html#module-grpc.framework.common">grpc.framework.common (module)</a>
  460. </dt>
  461. <dt><a href="grpc.framework.common.html#module-grpc.framework.common.cardinality">grpc.framework.common.cardinality (module)</a>
  462. </dt>
  463. <dt><a href="grpc.framework.common.html#module-grpc.framework.common.style">grpc.framework.common.style (module)</a>
  464. </dt>
  465. <dt><a href="grpc.framework.core.html#module-grpc.framework.core">grpc.framework.core (module)</a>
  466. </dt>
  467. <dt><a href="grpc.framework.core.html#module-grpc.framework.core.implementations">grpc.framework.core.implementations (module)</a>
  468. </dt>
  469. <dt><a href="grpc.framework.crust.html#module-grpc.framework.crust">grpc.framework.crust (module)</a>
  470. </dt>
  471. <dt><a href="grpc.framework.crust.html#module-grpc.framework.crust.implementations">grpc.framework.crust.implementations (module)</a>
  472. </dt>
  473. <dt><a href="grpc.framework.foundation.html#module-grpc.framework.foundation">grpc.framework.foundation (module)</a>
  474. </dt>
  475. <dt><a href="grpc.framework.foundation.html#module-grpc.framework.foundation.abandonment">grpc.framework.foundation.abandonment (module)</a>
  476. </dt>
  477. <dt><a href="grpc.framework.foundation.html#module-grpc.framework.foundation.activated">grpc.framework.foundation.activated (module)</a>
  478. </dt>
  479. </dl></td>
  480. <td style="width: 33%" valign="top"><dl>
  481. <dt><a href="grpc.framework.foundation.html#module-grpc.framework.foundation.callable_util">grpc.framework.foundation.callable_util (module)</a>
  482. </dt>
  483. <dt><a href="grpc.framework.foundation.html#module-grpc.framework.foundation.future">grpc.framework.foundation.future (module)</a>
  484. </dt>
  485. <dt><a href="grpc.framework.foundation.html#module-grpc.framework.foundation.later">grpc.framework.foundation.later (module)</a>
  486. </dt>
  487. <dt><a href="grpc.framework.foundation.html#module-grpc.framework.foundation.logging_pool">grpc.framework.foundation.logging_pool (module)</a>
  488. </dt>
  489. <dt><a href="grpc.framework.foundation.html#module-grpc.framework.foundation.relay">grpc.framework.foundation.relay (module)</a>
  490. </dt>
  491. <dt><a href="grpc.framework.foundation.html#module-grpc.framework.foundation.stream">grpc.framework.foundation.stream (module)</a>
  492. </dt>
  493. <dt><a href="grpc.framework.foundation.html#module-grpc.framework.foundation.stream_util">grpc.framework.foundation.stream_util (module)</a>
  494. </dt>
  495. <dt><a href="grpc.framework.interfaces.html#module-grpc.framework.interfaces">grpc.framework.interfaces (module)</a>
  496. </dt>
  497. <dt><a href="grpc.framework.interfaces.base.html#module-grpc.framework.interfaces.base">grpc.framework.interfaces.base (module)</a>
  498. </dt>
  499. <dt><a href="grpc.framework.interfaces.base.html#module-grpc.framework.interfaces.base.base">grpc.framework.interfaces.base.base (module)</a>
  500. </dt>
  501. <dt><a href="grpc.framework.interfaces.base.html#module-grpc.framework.interfaces.base.utilities">grpc.framework.interfaces.base.utilities (module)</a>
  502. </dt>
  503. <dt><a href="grpc.framework.interfaces.face.html#module-grpc.framework.interfaces.face">grpc.framework.interfaces.face (module)</a>
  504. </dt>
  505. <dt><a href="grpc.framework.interfaces.face.html#module-grpc.framework.interfaces.face.face">grpc.framework.interfaces.face.face (module)</a>
  506. </dt>
  507. <dt><a href="grpc.framework.interfaces.face.html#module-grpc.framework.interfaces.face.utilities">grpc.framework.interfaces.face.utilities (module)</a>
  508. </dt>
  509. <dt><a href="grpc.framework.interfaces.links.html#module-grpc.framework.interfaces.links">grpc.framework.interfaces.links (module)</a>
  510. </dt>
  511. <dt><a href="grpc.framework.interfaces.links.html#module-grpc.framework.interfaces.links.links">grpc.framework.interfaces.links.links (module)</a>
  512. </dt>
  513. <dt><a href="grpc.framework.interfaces.links.html#module-grpc.framework.interfaces.links.utilities">grpc.framework.interfaces.links.utilities (module)</a>
  514. </dt>
  515. <dt><a href="grpc.beta.html#grpc.beta.interfaces.grpc_call_options">grpc_call_options() (in module grpc.beta.interfaces)</a>
  516. </dt>
  517. <dt><a href="grpc.beta.html#grpc.beta.interfaces.GRPCCallOptions">GRPCCallOptions (class in grpc.beta.interfaces)</a>
  518. </dt>
  519. <dt><a href="grpc.beta.html#grpc.beta.interfaces.GRPCInvocationContext">GRPCInvocationContext (class in grpc.beta.interfaces)</a>
  520. </dt>
  521. <dt><a href="grpc.beta.html#grpc.beta.interfaces.GRPCServicerContext">GRPCServicerContext (class in grpc.beta.interfaces)</a>
  522. </dt>
  523. </dl></td>
  524. </tr></table>
  525. <h2 id="H">H</h2>
  526. <table style="width: 100%" class="indextable genindextable"><tr>
  527. <td style="width: 33%" valign="top"><dl>
  528. <dt><a href="grpc.html#grpc.HandlerCallDetails">HandlerCallDetails (class in grpc)</a>
  529. </dt>
  530. </dl></td>
  531. </tr></table>
  532. <h2 id="I">I</h2>
  533. <table style="width: 100%" class="indextable genindextable"><tr>
  534. <td style="width: 33%" valign="top"><dl>
  535. <dt><a href="grpc.html#grpc.ChannelConnectivity.IDLE">IDLE (grpc.ChannelConnectivity attribute)</a>, <a href="grpc.html#grpc.ChannelConnectivity.IDLE">[1]</a>
  536. </dt>
  537. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Abortion.initial_metadata">initial_metadata (grpc.framework.interfaces.face.face.Abortion attribute)</a>
  538. </dt>
  539. <dd><dl>
  540. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.initial_metadata">(grpc.framework.interfaces.links.links.Ticket attribute)</a>
  541. </dt>
  542. </dl></dd>
  543. <dt><a href="grpc.html#grpc.Call.initial_metadata">initial_metadata() (grpc.Call method)</a>
  544. </dt>
  545. <dd><dl>
  546. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Call.initial_metadata">(grpc.framework.interfaces.face.face.Call method)</a>
  547. </dt>
  548. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.ResponseReceiver.initial_metadata">(grpc.framework.interfaces.face.face.ResponseReceiver method)</a>
  549. </dt>
  550. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.ServicerContext.initial_metadata">(grpc.framework.interfaces.face.face.ServicerContext method)</a>
  551. </dt>
  552. </dl></dd>
  553. <dt><a href="grpc.framework.common.html#grpc.framework.common.style.Service.INLINE">INLINE (grpc.framework.common.style.Service attribute)</a>
  554. </dt>
  555. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.GenericStub.inline_stream_stream">inline_stream_stream() (grpc.framework.interfaces.face.face.GenericStub method)</a>
  556. </dt>
  557. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.GenericStub.inline_unary_stream">inline_unary_stream() (grpc.framework.interfaces.face.face.GenericStub method)</a>
  558. </dt>
  559. <dt><a href="grpc.html#grpc.insecure_channel">insecure_channel() (in module grpc)</a>
  560. </dt>
  561. <dd><dl>
  562. <dt><a href="grpc.beta.html#grpc.beta.implementations.insecure_channel">(in module grpc.beta.implementations)</a>
  563. </dt>
  564. </dl></dd>
  565. <dt><a href="grpc.html#grpc.StatusCode.INTERNAL">INTERNAL (grpc.StatusCode attribute)</a>
  566. </dt>
  567. </dl></td>
  568. <td style="width: 33%" valign="top"><dl>
  569. <dt><a href="grpc.html#grpc.StatusCode.INVALID_ARGUMENT">INVALID_ARGUMENT (grpc.StatusCode attribute)</a>
  570. </dt>
  571. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Protocol.Kind.INVOCATION_CONTEXT">INVOCATION_CONTEXT (grpc.framework.interfaces.links.links.Protocol.Kind attribute)</a>
  572. </dt>
  573. <dt><a href="grpc.framework.core.html#grpc.framework.core.implementations.invocation_end_link">invocation_end_link() (in module grpc.framework.core.implementations)</a>
  574. </dt>
  575. <dt><a href="grpc.html#grpc.HandlerCallDetails.invocation_metadata">invocation_metadata (grpc.HandlerCallDetails attribute)</a>
  576. </dt>
  577. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.ServicerContext.invocation_metadata">invocation_metadata() (grpc.framework.interfaces.face.face.ServicerContext method)</a>
  578. </dt>
  579. <dd><dl>
  580. <dt><a href="grpc.html#grpc.ServicerContext.invocation_metadata">(grpc.ServicerContext method)</a>
  581. </dt>
  582. </dl></dd>
  583. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.RpcContext.is_active">is_active() (grpc.framework.interfaces.face.face.RpcContext method)</a>
  584. </dt>
  585. <dd><dl>
  586. <dt><a href="grpc.html#grpc.RpcContext.is_active">(grpc.RpcContext method)</a>
  587. </dt>
  588. </dl></dd>
  589. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.stream_util.IterableConsumer">IterableConsumer (class in grpc.framework.foundation.stream_util)</a>
  590. </dt>
  591. </dl></td>
  592. </tr></table>
  593. <h2 id="J">J</h2>
  594. <table style="width: 100%" class="indextable genindextable"><tr>
  595. <td style="width: 33%" valign="top"><dl>
  596. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Link.join_link">join_link() (grpc.framework.interfaces.links.links.Link method)</a>
  597. </dt>
  598. </dl></td>
  599. </tr></table>
  600. <h2 id="K">K</h2>
  601. <table style="width: 100%" class="indextable genindextable"><tr>
  602. <td style="width: 33%" valign="top"><dl>
  603. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.callable_util.Outcome.kind">kind (grpc.framework.foundation.callable_util.Outcome attribute)</a>
  604. </dt>
  605. <dd><dl>
  606. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Outcome.kind">(grpc.framework.interfaces.base.base.Outcome attribute)</a>
  607. </dt>
  608. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Subscription.kind">(grpc.framework.interfaces.base.base.Subscription attribute)</a>
  609. </dt>
  610. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Abortion.kind">(grpc.framework.interfaces.face.face.Abortion attribute)</a>
  611. </dt>
  612. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Protocol.kind">(grpc.framework.interfaces.links.links.Protocol attribute)</a>
  613. </dt>
  614. </dl></dd>
  615. </dl></td>
  616. </tr></table>
  617. <h2 id="L">L</h2>
  618. <table style="width: 100%" class="indextable genindextable"><tr>
  619. <td style="width: 33%" valign="top"><dl>
  620. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.later.later">later() (in module grpc.framework.foundation.later)</a>
  621. </dt>
  622. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Link">Link (class in grpc.framework.interfaces.links.links)</a>
  623. </dt>
  624. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Outcome.Kind.LOCAL_FAILURE">LOCAL_FAILURE (grpc.framework.interfaces.base.base.Outcome.Kind attribute)</a>
  625. </dt>
  626. <dd><dl>
  627. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Abortion.Kind.LOCAL_FAILURE">(grpc.framework.interfaces.face.face.Abortion.Kind attribute)</a>
  628. </dt>
  629. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.Termination.LOCAL_FAILURE">(grpc.framework.interfaces.links.links.Ticket.Termination attribute)</a>
  630. </dt>
  631. </dl></dd>
  632. </dl></td>
  633. <td style="width: 33%" valign="top"><dl>
  634. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Outcome.Kind.LOCAL_SHUTDOWN">LOCAL_SHUTDOWN (grpc.framework.interfaces.base.base.Outcome.Kind attribute)</a>
  635. </dt>
  636. <dd><dl>
  637. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Abortion.Kind.LOCAL_SHUTDOWN">(grpc.framework.interfaces.face.face.Abortion.Kind attribute)</a>
  638. </dt>
  639. </dl></dd>
  640. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.LocalError">LocalError</a>
  641. </dt>
  642. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.LocalShutdownError">LocalShutdownError</a>
  643. </dt>
  644. </dl></td>
  645. </tr></table>
  646. <h2 id="M">M</h2>
  647. <table style="width: 100%" class="indextable genindextable"><tr>
  648. <td style="width: 33%" valign="top"><dl>
  649. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Completion.message">message (grpc.framework.interfaces.base.base.Completion attribute)</a>
  650. </dt>
  651. <dd><dl>
  652. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.message">(grpc.framework.interfaces.links.links.Ticket attribute)</a>
  653. </dt>
  654. </dl></dd>
  655. <dt><a href="grpc.html#grpc.metadata_call_credentials">metadata_call_credentials() (in module grpc)</a>
  656. </dt>
  657. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.method">method (grpc.framework.interfaces.links.links.Ticket attribute)</a>
  658. </dt>
  659. <dt><a href="grpc.html#grpc.method_handlers_generic_handler">method_handlers_generic_handler() (in module grpc)</a>
  660. </dt>
  661. </dl></td>
  662. <td style="width: 33%" valign="top"><dl>
  663. <dt><a href="grpc.html#grpc.AuthMetadataContext.method_name">method_name (grpc.AuthMetadataContext attribute)</a>
  664. </dt>
  665. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.MethodImplementation">MethodImplementation (class in grpc.framework.interfaces.face.face)</a>
  666. </dt>
  667. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.MultiMethodImplementation">MultiMethodImplementation (class in grpc.framework.interfaces.face.face)</a>
  668. </dt>
  669. </dl></td>
  670. </tr></table>
  671. <h2 id="N">N</h2>
  672. <table style="width: 100%" class="indextable genindextable"><tr>
  673. <td style="width: 33%" valign="top"><dl>
  674. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.NoSuchMethodError.name">name (grpc.framework.interfaces.face.face.NoSuchMethodError attribute)</a>
  675. </dt>
  676. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Abortion.Kind.NETWORK_FAILURE">NETWORK_FAILURE (grpc.framework.interfaces.face.face.Abortion.Kind attribute)</a>
  677. </dt>
  678. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.NetworkError">NetworkError</a>
  679. </dt>
  680. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.stream_util.IterableConsumer.next">next() (grpc.framework.foundation.stream_util.IterableConsumer method)</a>
  681. </dt>
  682. </dl></td>
  683. <td style="width: 33%" valign="top"><dl>
  684. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Subscription.Kind.NONE">NONE (grpc.framework.interfaces.base.base.Subscription.Kind attribute)</a>
  685. </dt>
  686. <dd><dl>
  687. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.Subscription.NONE">(grpc.framework.interfaces.links.links.Ticket.Subscription attribute)</a>
  688. </dt>
  689. </dl></dd>
  690. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.NoSuchMethodError">NoSuchMethodError</a>, <a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.NoSuchMethodError">[1]</a>
  691. </dt>
  692. <dt><a href="grpc.html#grpc.StatusCode.NOT_FOUND">NOT_FOUND (grpc.StatusCode attribute)</a>
  693. </dt>
  694. </dl></td>
  695. </tr></table>
  696. <h2 id="O">O</h2>
  697. <table style="width: 100%" class="indextable genindextable"><tr>
  698. <td style="width: 33%" valign="top"><dl>
  699. <dt><a href="grpc.html#grpc.StatusCode.OK">OK (grpc.StatusCode attribute)</a>
  700. </dt>
  701. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.End.operate">operate() (grpc.framework.interfaces.base.base.End method)</a>
  702. </dt>
  703. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.operation_id">operation_id (grpc.framework.interfaces.links.links.Ticket attribute)</a>
  704. </dt>
  705. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.End.operation_stats">operation_stats() (grpc.framework.interfaces.base.base.End method)</a>
  706. </dt>
  707. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.OperationContext">OperationContext (class in grpc.framework.interfaces.base.base)</a>
  708. </dt>
  709. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Operator">Operator (class in grpc.framework.interfaces.base.base)</a>
  710. </dt>
  711. </dl></td>
  712. <td style="width: 33%" valign="top"><dl>
  713. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Subscription.operator">operator (grpc.framework.interfaces.base.base.Subscription attribute)</a>
  714. </dt>
  715. <dt><a href="grpc.html#grpc.StatusCode.OUT_OF_RANGE">OUT_OF_RANGE (grpc.StatusCode attribute)</a>
  716. </dt>
  717. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.callable_util.Outcome">Outcome (class in grpc.framework.foundation.callable_util)</a>
  718. </dt>
  719. <dd><dl>
  720. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Outcome">(class in grpc.framework.interfaces.base.base)</a>
  721. </dt>
  722. </dl></dd>
  723. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.OperationContext.outcome">outcome() (grpc.framework.interfaces.base.base.OperationContext method)</a>
  724. </dt>
  725. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.callable_util.Outcome.Kind">Outcome.Kind (class in grpc.framework.foundation.callable_util)</a>
  726. </dt>
  727. <dd><dl>
  728. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Outcome.Kind">(class in grpc.framework.interfaces.base.base)</a>
  729. </dt>
  730. </dl></dd>
  731. </dl></td>
  732. </tr></table>
  733. <h2 id="P">P</h2>
  734. <table style="width: 100%" class="indextable genindextable"><tr>
  735. <td style="width: 33%" valign="top"><dl>
  736. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.payload">payload (grpc.framework.interfaces.links.links.Ticket attribute)</a>
  737. </dt>
  738. <dt><a href="grpc.beta.html#grpc.beta.interfaces.GRPCServicerContext.peer">peer() (grpc.beta.interfaces.GRPCServicerContext method)</a>
  739. </dt>
  740. <dd><dl>
  741. <dt><a href="grpc.html#grpc.ServicerContext.peer">(grpc.ServicerContext method)</a>
  742. </dt>
  743. </dl></dd>
  744. <dt><a href="grpc.html#grpc.StatusCode.PERMISSION_DENIED">PERMISSION_DENIED (grpc.StatusCode attribute)</a>
  745. </dt>
  746. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.logging_pool.pool">pool() (in module grpc.framework.foundation.logging_pool)</a>
  747. </dt>
  748. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.relay.pool_relay">pool_relay() (in module grpc.framework.foundation.relay)</a>
  749. </dt>
  750. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Protocol">Protocol (class in grpc.framework.interfaces.links.links)</a>
  751. </dt>
  752. </dl></td>
  753. <td style="width: 33%" valign="top"><dl>
  754. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.protocol">protocol (grpc.framework.interfaces.links.links.Ticket attribute)</a>
  755. </dt>
  756. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Protocol.Kind">Protocol.Kind (class in grpc.framework.interfaces.links.links)</a>
  757. </dt>
  758. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.RpcContext.protocol_context">protocol_context() (grpc.framework.interfaces.face.face.RpcContext method)</a>
  759. </dt>
  760. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Subscription.protocol_receiver">protocol_receiver (grpc.framework.interfaces.base.base.Subscription attribute)</a>
  761. </dt>
  762. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.ProtocolReceiver">ProtocolReceiver (class in grpc.framework.interfaces.base.base)</a>
  763. </dt>
  764. </dl></td>
  765. </tr></table>
  766. <h2 id="R">R</h2>
  767. <table style="width: 100%" class="indextable genindextable"><tr>
  768. <td style="width: 33%" valign="top"><dl>
  769. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.callable_util.Outcome.Kind.RAISED">RAISED (grpc.framework.foundation.callable_util.Outcome.Kind attribute)</a>
  770. </dt>
  771. <dt><a href="grpc.html#grpc.ChannelConnectivity.READY">READY (grpc.ChannelConnectivity attribute)</a>, <a href="grpc.html#grpc.ChannelConnectivity.READY">[1]</a>
  772. </dt>
  773. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Outcome.Kind.RECEPTION_FAILURE">RECEPTION_FAILURE (grpc.framework.interfaces.base.base.Outcome.Kind attribute)</a>
  774. </dt>
  775. <dd><dl>
  776. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.Termination.RECEPTION_FAILURE">(grpc.framework.interfaces.links.links.Ticket.Termination attribute)</a>
  777. </dt>
  778. </dl></dd>
  779. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.relay.Relay">Relay (class in grpc.framework.foundation.relay)</a>
  780. </dt>
  781. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.relay.relay">relay() (in module grpc.framework.foundation.relay)</a>
  782. </dt>
  783. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Outcome.Kind.REMOTE_FAILURE">REMOTE_FAILURE (grpc.framework.interfaces.base.base.Outcome.Kind attribute)</a>
  784. </dt>
  785. <dd><dl>
  786. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Abortion.Kind.REMOTE_FAILURE">(grpc.framework.interfaces.face.face.Abortion.Kind attribute)</a>
  787. </dt>
  788. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.Termination.REMOTE_FAILURE">(grpc.framework.interfaces.links.links.Ticket.Termination attribute)</a>
  789. </dt>
  790. </dl></dd>
  791. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Outcome.Kind.REMOTE_SHUTDOWN">REMOTE_SHUTDOWN (grpc.framework.interfaces.base.base.Outcome.Kind attribute)</a>
  792. </dt>
  793. <dd><dl>
  794. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Abortion.Kind.REMOTE_SHUTDOWN">(grpc.framework.interfaces.face.face.Abortion.Kind attribute)</a>
  795. </dt>
  796. </dl></dd>
  797. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.RemoteError">RemoteError</a>
  798. </dt>
  799. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.RemoteShutdownError">RemoteShutdownError</a>
  800. </dt>
  801. <dt><a href="grpc.html#grpc.RpcMethodHandler.request_deserializer">request_deserializer (grpc.RpcMethodHandler attribute)</a>
  802. </dt>
  803. <dt><a href="grpc.html#grpc.RpcMethodHandler.request_streaming">request_streaming (grpc.RpcMethodHandler attribute)</a>
  804. </dt>
  805. <dt><a href="grpc.html#grpc.StatusCode.RESOURCE_EXHAUSTED">RESOURCE_EXHAUSTED (grpc.StatusCode attribute)</a>
  806. </dt>
  807. </dl></td>
  808. <td style="width: 33%" valign="top"><dl>
  809. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.ResponseReceiver.response">response() (grpc.framework.interfaces.face.face.ResponseReceiver method)</a>
  810. </dt>
  811. <dt><a href="grpc.html#grpc.RpcMethodHandler.response_serializer">response_serializer (grpc.RpcMethodHandler attribute)</a>
  812. </dt>
  813. <dt><a href="grpc.html#grpc.RpcMethodHandler.response_streaming">response_streaming (grpc.RpcMethodHandler attribute)</a>
  814. </dt>
  815. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.ResponseReceiver">ResponseReceiver (class in grpc.framework.interfaces.face.face)</a>
  816. </dt>
  817. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.future.Future.result">result() (grpc.framework.foundation.future.Future method)</a>
  818. </dt>
  819. <dd><dl>
  820. <dt><a href="grpc.html#grpc.Future.result">(grpc.Future method)</a>
  821. </dt>
  822. </dl></dd>
  823. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.callable_util.Outcome.return_value">return_value (grpc.framework.foundation.callable_util.Outcome attribute)</a>
  824. </dt>
  825. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.callable_util.Outcome.Kind.RETURNED">RETURNED (grpc.framework.foundation.callable_util.Outcome.Kind attribute)</a>
  826. </dt>
  827. <dt><a href="grpc.html#grpc.RpcContext">RpcContext (class in grpc)</a>
  828. </dt>
  829. <dd><dl>
  830. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.RpcContext">(class in grpc.framework.interfaces.face.face)</a>
  831. </dt>
  832. </dl></dd>
  833. <dt><a href="grpc.html#grpc.RpcError">RpcError</a>
  834. </dt>
  835. <dt><a href="grpc.html#grpc.RpcMethodHandler">RpcMethodHandler (class in grpc)</a>
  836. </dt>
  837. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.future.Future.running">running() (grpc.framework.foundation.future.Future method)</a>
  838. </dt>
  839. <dd><dl>
  840. <dt><a href="grpc.html#grpc.Future.running">(grpc.Future method)</a>
  841. </dt>
  842. </dl></dd>
  843. </dl></td>
  844. </tr></table>
  845. <h2 id="S">S</h2>
  846. <table style="width: 100%" class="indextable genindextable"><tr>
  847. <td style="width: 33%" valign="top"><dl>
  848. <dt><a href="grpc.html#grpc.secure_channel">secure_channel() (in module grpc)</a>
  849. </dt>
  850. <dd><dl>
  851. <dt><a href="grpc.beta.html#grpc.beta.implementations.secure_channel">(in module grpc.beta.implementations)</a>
  852. </dt>
  853. </dl></dd>
  854. <dt><a href="grpc.html#grpc.ServicerContext.send_initial_metadata">send_initial_metadata() (grpc.ServicerContext method)</a>
  855. </dt>
  856. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.sequence_number">sequence_number (grpc.framework.interfaces.links.links.Ticket attribute)</a>
  857. </dt>
  858. <dt><a href="grpc.html#grpc.Server">Server (class in grpc)</a>
  859. </dt>
  860. <dd><dl>
  861. <dt><a href="grpc.beta.html#grpc.beta.interfaces.Server">(class in grpc.beta.interfaces)</a>
  862. </dt>
  863. </dl></dd>
  864. <dt><a href="grpc.html#grpc.server">server() (in module grpc)</a>
  865. </dt>
  866. <dd><dl>
  867. <dt><a href="grpc.beta.html#grpc.beta.implementations.server">(in module grpc.beta.implementations)</a>
  868. </dt>
  869. </dl></dd>
  870. <dt><a href="grpc.beta.html#grpc.beta.implementations.server_options">server_options() (in module grpc.beta.implementations)</a>
  871. </dt>
  872. <dt><a href="grpc.html#grpc.ServerCredentials">ServerCredentials (class in grpc)</a>
  873. </dt>
  874. <dt><a href="grpc.beta.html#grpc.beta.implementations.ServerOptions">ServerOptions (class in grpc.beta.implementations)</a>
  875. </dt>
  876. <dt><a href="grpc.framework.common.html#grpc.framework.common.style.Service">Service (class in grpc.framework.common.style)</a>
  877. </dt>
  878. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Servicer.service">service() (grpc.framework.interfaces.base.base.Servicer method)</a>
  879. </dt>
  880. <dd><dl>
  881. <dt><a href="grpc.html#grpc.GenericRpcHandler.service">(grpc.GenericRpcHandler method)</a>
  882. </dt>
  883. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.MultiMethodImplementation.service">(grpc.framework.interfaces.face.face.MultiMethodImplementation method)</a>
  884. </dt>
  885. </dl></dd>
  886. <dt><a href="grpc.framework.core.html#grpc.framework.core.implementations.service_end_link">service_end_link() (in module grpc.framework.core.implementations)</a>
  887. </dt>
  888. <dt><a href="grpc.html#grpc.AuthMetadataContext.service_url">service_url (grpc.AuthMetadataContext attribute)</a>
  889. </dt>
  890. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Servicer">Servicer (class in grpc.framework.interfaces.base.base)</a>
  891. </dt>
  892. <dt><a href="grpc.framework.crust.html#grpc.framework.crust.implementations.servicer">servicer() (in module grpc.framework.crust.implementations)</a>
  893. </dt>
  894. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Protocol.Kind.SERVICER_CONTEXT">SERVICER_CONTEXT (grpc.framework.interfaces.links.links.Protocol.Kind attribute)</a>
  895. </dt>
  896. <dt><a href="grpc.html#grpc.ServicerContext">ServicerContext (class in grpc)</a>
  897. </dt>
  898. <dd><dl>
  899. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.ServicerContext">(class in grpc.framework.interfaces.face.face)</a>
  900. </dt>
  901. </dl></dd>
  902. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.relay.Relay.set_behavior">set_behavior() (grpc.framework.foundation.relay.Relay method)</a>
  903. </dt>
  904. <dt><a href="grpc.html#grpc.ServicerContext.set_code">set_code() (grpc.ServicerContext method)</a>
  905. </dt>
  906. <dt><a href="grpc.html#grpc.ServicerContext.set_details">set_details() (grpc.ServicerContext method)</a>
  907. </dt>
  908. <dt><a href="grpc.html#grpc.ServicerContext.set_trailing_metadata">set_trailing_metadata() (grpc.ServicerContext method)</a>
  909. </dt>
  910. <dt><a href="grpc.html#grpc.ChannelConnectivity.SHUTDOWN">SHUTDOWN (grpc.ChannelConnectivity attribute)</a>, <a href="grpc.html#grpc.ChannelConnectivity.SHUTDOWN">[1]</a>
  911. </dt>
  912. <dd><dl>
  913. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.Termination.SHUTDOWN">(grpc.framework.interfaces.links.links.Ticket.Termination attribute)</a>
  914. </dt>
  915. </dl></dd>
  916. <dt><a href="grpc.html#grpc.ssl_channel_credentials">ssl_channel_credentials() (in module grpc)</a>
  917. </dt>
  918. <dt><a href="grpc.html#grpc.ssl_server_credentials">ssl_server_credentials() (in module grpc)</a>
  919. </dt>
  920. <dt><a href="grpc.beta.html#grpc.beta.interfaces.Server.start">start() (grpc.beta.interfaces.Server method)</a>
  921. </dt>
  922. <dd><dl>
  923. <dt><a href="grpc.html#grpc.Server.start">(grpc.Server method)</a>
  924. </dt>
  925. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.activated.Activated.start">(grpc.framework.foundation.activated.Activated method)</a>
  926. </dt>
  927. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.End.start">(grpc.framework.interfaces.base.base.End method)</a>
  928. </dt>
  929. </dl></dd>
  930. <dt><a href="grpc.html#grpc.StatusCode">StatusCode (class in grpc)</a>
  931. </dt>
  932. <dt><a href="grpc.beta.html#grpc.beta.interfaces.Server.stop">stop() (grpc.beta.interfaces.Server method)</a>
  933. </dt>
  934. <dd><dl>
  935. <dt><a href="grpc.html#grpc.Server.stop">(grpc.Server method)</a>
  936. </dt>
  937. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.activated.Activated.stop">(grpc.framework.foundation.activated.Activated method)</a>
  938. </dt>
  939. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.End.stop">(grpc.framework.interfaces.base.base.End method)</a>
  940. </dt>
  941. </dl></dd>
  942. </dl></td>
  943. <td style="width: 33%" valign="top"><dl>
  944. <dt><a href="grpc.framework.common.html#grpc.framework.common.cardinality.Cardinality.STREAM_STREAM">STREAM_STREAM (grpc.framework.common.cardinality.Cardinality attribute)</a>
  945. </dt>
  946. <dt><a href="grpc.html#grpc.RpcMethodHandler.stream_stream">stream_stream (grpc.RpcMethodHandler attribute)</a>
  947. </dt>
  948. <dt><a href="grpc.html#grpc.Channel.stream_stream">stream_stream() (grpc.Channel method)</a>
  949. </dt>
  950. <dd><dl>
  951. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.GenericStub.stream_stream">(grpc.framework.interfaces.face.face.GenericStub method)</a>
  952. </dt>
  953. </dl></dd>
  954. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.MethodImplementation.stream_stream_event">stream_stream_event (grpc.framework.interfaces.face.face.MethodImplementation attribute)</a>
  955. </dt>
  956. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.utilities.stream_stream_event">stream_stream_event() (in module grpc.framework.interfaces.face.utilities)</a>
  957. </dt>
  958. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.MethodImplementation.stream_stream_inline">stream_stream_inline (grpc.framework.interfaces.face.face.MethodImplementation attribute)</a>
  959. </dt>
  960. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.utilities.stream_stream_inline">stream_stream_inline() (in module grpc.framework.interfaces.face.utilities)</a>
  961. </dt>
  962. <dt><a href="grpc.html#grpc.stream_stream_rpc_method_handler">stream_stream_rpc_method_handler() (in module grpc)</a>
  963. </dt>
  964. <dt><a href="grpc.framework.common.html#grpc.framework.common.cardinality.Cardinality.STREAM_UNARY">STREAM_UNARY (grpc.framework.common.cardinality.Cardinality attribute)</a>
  965. </dt>
  966. <dt><a href="grpc.html#grpc.RpcMethodHandler.stream_unary">stream_unary (grpc.RpcMethodHandler attribute)</a>
  967. </dt>
  968. <dt><a href="grpc.html#grpc.Channel.stream_unary">stream_unary() (grpc.Channel method)</a>
  969. </dt>
  970. <dd><dl>
  971. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.GenericStub.stream_unary">(grpc.framework.interfaces.face.face.GenericStub method)</a>
  972. </dt>
  973. </dl></dd>
  974. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.MethodImplementation.stream_unary_event">stream_unary_event (grpc.framework.interfaces.face.face.MethodImplementation attribute)</a>
  975. </dt>
  976. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.utilities.stream_unary_event">stream_unary_event() (in module grpc.framework.interfaces.face.utilities)</a>
  977. </dt>
  978. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.MethodImplementation.stream_unary_inline">stream_unary_inline (grpc.framework.interfaces.face.face.MethodImplementation attribute)</a>
  979. </dt>
  980. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.utilities.stream_unary_inline">stream_unary_inline() (in module grpc.framework.interfaces.face.utilities)</a>
  981. </dt>
  982. <dt><a href="grpc.html#grpc.stream_unary_rpc_method_handler">stream_unary_rpc_method_handler() (in module grpc)</a>
  983. </dt>
  984. <dt><a href="grpc.html#grpc.StreamStreamMultiCallable">StreamStreamMultiCallable (class in grpc)</a>
  985. </dt>
  986. <dd><dl>
  987. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.StreamStreamMultiCallable">(class in grpc.framework.interfaces.face.face)</a>
  988. </dt>
  989. </dl></dd>
  990. <dt><a href="grpc.html#grpc.StreamUnaryMultiCallable">StreamUnaryMultiCallable (class in grpc)</a>
  991. </dt>
  992. <dd><dl>
  993. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.StreamUnaryMultiCallable">(class in grpc.framework.interfaces.face.face)</a>
  994. </dt>
  995. </dl></dd>
  996. <dt><a href="grpc.beta.html#grpc.beta.implementations.stub_options">stub_options() (in module grpc.beta.implementations)</a>
  997. </dt>
  998. <dt><a href="grpc.beta.html#grpc.beta.implementations.StubOptions">StubOptions (class in grpc.beta.implementations)</a>
  999. </dt>
  1000. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.MethodImplementation.style">style (grpc.framework.interfaces.face.face.MethodImplementation attribute)</a>
  1001. </dt>
  1002. <dt><a href="grpc.beta.html#grpc.beta.implementations.Channel.subscribe">subscribe() (grpc.beta.implementations.Channel method)</a>
  1003. </dt>
  1004. <dd><dl>
  1005. <dt><a href="grpc.html#grpc.Channel.subscribe">(grpc.Channel method)</a>
  1006. </dt>
  1007. </dl></dd>
  1008. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Subscription">Subscription (class in grpc.framework.interfaces.base.base)</a>
  1009. </dt>
  1010. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.subscription">subscription (grpc.framework.interfaces.links.links.Ticket attribute)</a>
  1011. </dt>
  1012. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Subscription.Kind">Subscription.Kind (class in grpc.framework.interfaces.base.base)</a>
  1013. </dt>
  1014. </dl></td>
  1015. </tr></table>
  1016. <h2 id="T">T</h2>
  1017. <table style="width: 100%" class="indextable genindextable"><tr>
  1018. <td style="width: 33%" valign="top"><dl>
  1019. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Completion.terminal_metadata">terminal_metadata (grpc.framework.interfaces.base.base.Completion attribute)</a>
  1020. </dt>
  1021. <dd><dl>
  1022. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Abortion.terminal_metadata">(grpc.framework.interfaces.face.face.Abortion attribute)</a>
  1023. </dt>
  1024. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.terminal_metadata">(grpc.framework.interfaces.links.links.Ticket attribute)</a>
  1025. </dt>
  1026. </dl></dd>
  1027. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.Call.terminal_metadata">terminal_metadata() (grpc.framework.interfaces.face.face.Call method)</a>
  1028. </dt>
  1029. <dd><dl>
  1030. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.ServicerContext.terminal_metadata">(grpc.framework.interfaces.face.face.ServicerContext method)</a>
  1031. </dt>
  1032. </dl></dd>
  1033. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.stream.Consumer.terminate">terminate() (grpc.framework.foundation.stream.Consumer method)</a>
  1034. </dt>
  1035. <dd><dl>
  1036. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.stream_util.IterableConsumer.terminate">(grpc.framework.foundation.stream_util.IterableConsumer method)</a>
  1037. </dt>
  1038. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.stream_util.ThreadSwitchingConsumer.terminate">(grpc.framework.foundation.stream_util.ThreadSwitchingConsumer method)</a>
  1039. </dt>
  1040. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.stream_util.TransformingConsumer.terminate">(grpc.framework.foundation.stream_util.TransformingConsumer method)</a>
  1041. </dt>
  1042. </dl></dd>
  1043. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.termination">termination (grpc.framework.interfaces.links.links.Ticket attribute)</a>
  1044. </dt>
  1045. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.Subscription.TERMINATION">TERMINATION (grpc.framework.interfaces.links.links.Ticket.Subscription attribute)</a>
  1046. </dt>
  1047. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Subscription.termination_callback">termination_callback (grpc.framework.interfaces.base.base.Subscription attribute)</a>
  1048. </dt>
  1049. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Subscription.Kind.TERMINATION_ONLY">TERMINATION_ONLY (grpc.framework.interfaces.base.base.Subscription.Kind attribute)</a>
  1050. </dt>
  1051. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.stream_util.ThreadSwitchingConsumer">ThreadSwitchingConsumer (class in grpc.framework.foundation.stream_util)</a>
  1052. </dt>
  1053. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket">Ticket (class in grpc.framework.interfaces.links.links)</a>
  1054. </dt>
  1055. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.Subscription">Ticket.Subscription (class in grpc.framework.interfaces.links.links)</a>
  1056. </dt>
  1057. </dl></td>
  1058. <td style="width: 33%" valign="top"><dl>
  1059. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.Termination">Ticket.Termination (class in grpc.framework.interfaces.links.links)</a>
  1060. </dt>
  1061. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.OperationContext.time_remaining">time_remaining() (grpc.framework.interfaces.base.base.OperationContext method)</a>
  1062. </dt>
  1063. <dd><dl>
  1064. <dt><a href="grpc.html#grpc.RpcContext.time_remaining">(grpc.RpcContext method)</a>
  1065. </dt>
  1066. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.RpcContext.time_remaining">(grpc.framework.interfaces.face.face.RpcContext method)</a>
  1067. </dt>
  1068. </dl></dd>
  1069. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.timeout">timeout (grpc.framework.interfaces.links.links.Ticket attribute)</a>
  1070. </dt>
  1071. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.future.TimeoutError">TimeoutError</a>
  1072. </dt>
  1073. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.future.Future.traceback">traceback() (grpc.framework.foundation.future.Future method)</a>
  1074. </dt>
  1075. <dd><dl>
  1076. <dt><a href="grpc.html#grpc.Future.traceback">(grpc.Future method)</a>
  1077. </dt>
  1078. </dl></dd>
  1079. <dt><a href="grpc.html#grpc.Call.trailing_metadata">trailing_metadata() (grpc.Call method)</a>
  1080. </dt>
  1081. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.stream_util.TransformingConsumer">TransformingConsumer (class in grpc.framework.foundation.stream_util)</a>
  1082. </dt>
  1083. <dt><a href="grpc.html#grpc.ChannelConnectivity.TRANSIENT_FAILURE">TRANSIENT_FAILURE (grpc.ChannelConnectivity attribute)</a>, <a href="grpc.html#grpc.ChannelConnectivity.TRANSIENT_FAILURE">[1]</a>
  1084. </dt>
  1085. <dt><a href="grpc.framework.interfaces.base.html#grpc.framework.interfaces.base.base.Outcome.Kind.TRANSMISSION_FAILURE">TRANSMISSION_FAILURE (grpc.framework.interfaces.base.base.Outcome.Kind attribute)</a>
  1086. </dt>
  1087. <dd><dl>
  1088. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Ticket.Termination.TRANSMISSION_FAILURE">(grpc.framework.interfaces.links.links.Ticket.Termination attribute)</a>
  1089. </dt>
  1090. </dl></dd>
  1091. </dl></td>
  1092. </tr></table>
  1093. <h2 id="U">U</h2>
  1094. <table style="width: 100%" class="indextable genindextable"><tr>
  1095. <td style="width: 33%" valign="top"><dl>
  1096. <dt><a href="grpc.framework.common.html#grpc.framework.common.cardinality.Cardinality.UNARY_STREAM">UNARY_STREAM (grpc.framework.common.cardinality.Cardinality attribute)</a>
  1097. </dt>
  1098. <dt><a href="grpc.html#grpc.RpcMethodHandler.unary_stream">unary_stream (grpc.RpcMethodHandler attribute)</a>
  1099. </dt>
  1100. <dt><a href="grpc.html#grpc.Channel.unary_stream">unary_stream() (grpc.Channel method)</a>
  1101. </dt>
  1102. <dd><dl>
  1103. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.GenericStub.unary_stream">(grpc.framework.interfaces.face.face.GenericStub method)</a>
  1104. </dt>
  1105. </dl></dd>
  1106. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.MethodImplementation.unary_stream_event">unary_stream_event (grpc.framework.interfaces.face.face.MethodImplementation attribute)</a>
  1107. </dt>
  1108. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.utilities.unary_stream_event">unary_stream_event() (in module grpc.framework.interfaces.face.utilities)</a>
  1109. </dt>
  1110. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.MethodImplementation.unary_stream_inline">unary_stream_inline (grpc.framework.interfaces.face.face.MethodImplementation attribute)</a>
  1111. </dt>
  1112. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.utilities.unary_stream_inline">unary_stream_inline() (in module grpc.framework.interfaces.face.utilities)</a>
  1113. </dt>
  1114. <dt><a href="grpc.html#grpc.unary_stream_rpc_method_handler">unary_stream_rpc_method_handler() (in module grpc)</a>
  1115. </dt>
  1116. <dt><a href="grpc.framework.common.html#grpc.framework.common.cardinality.Cardinality.UNARY_UNARY">UNARY_UNARY (grpc.framework.common.cardinality.Cardinality attribute)</a>
  1117. </dt>
  1118. <dt><a href="grpc.html#grpc.RpcMethodHandler.unary_unary">unary_unary (grpc.RpcMethodHandler attribute)</a>
  1119. </dt>
  1120. <dt><a href="grpc.html#grpc.Channel.unary_unary">unary_unary() (grpc.Channel method)</a>
  1121. </dt>
  1122. <dd><dl>
  1123. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.GenericStub.unary_unary">(grpc.framework.interfaces.face.face.GenericStub method)</a>
  1124. </dt>
  1125. </dl></dd>
  1126. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.MethodImplementation.unary_unary_event">unary_unary_event (grpc.framework.interfaces.face.face.MethodImplementation attribute)</a>
  1127. </dt>
  1128. </dl></td>
  1129. <td style="width: 33%" valign="top"><dl>
  1130. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.utilities.unary_unary_event">unary_unary_event() (in module grpc.framework.interfaces.face.utilities)</a>
  1131. </dt>
  1132. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.MethodImplementation.unary_unary_inline">unary_unary_inline (grpc.framework.interfaces.face.face.MethodImplementation attribute)</a>
  1133. </dt>
  1134. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.utilities.unary_unary_inline">unary_unary_inline() (in module grpc.framework.interfaces.face.utilities)</a>
  1135. </dt>
  1136. <dt><a href="grpc.html#grpc.unary_unary_rpc_method_handler">unary_unary_rpc_method_handler() (in module grpc)</a>
  1137. </dt>
  1138. <dt><a href="grpc.html#grpc.UnaryStreamMultiCallable">UnaryStreamMultiCallable (class in grpc)</a>
  1139. </dt>
  1140. <dd><dl>
  1141. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.UnaryStreamMultiCallable">(class in grpc.framework.interfaces.face.face)</a>
  1142. </dt>
  1143. </dl></dd>
  1144. <dt><a href="grpc.html#grpc.UnaryUnaryMultiCallable">UnaryUnaryMultiCallable (class in grpc)</a>
  1145. </dt>
  1146. <dd><dl>
  1147. <dt><a href="grpc.framework.interfaces.face.html#grpc.framework.interfaces.face.face.UnaryUnaryMultiCallable">(class in grpc.framework.interfaces.face.face)</a>
  1148. </dt>
  1149. </dl></dd>
  1150. <dt><a href="grpc.html#grpc.StatusCode.UNAUTHENTICATED">UNAUTHENTICATED (grpc.StatusCode attribute)</a>
  1151. </dt>
  1152. <dt><a href="grpc.html#grpc.StatusCode.UNAVAILABLE">UNAVAILABLE (grpc.StatusCode attribute)</a>
  1153. </dt>
  1154. <dt><a href="grpc.html#grpc.StatusCode.UNIMPLEMENTED">UNIMPLEMENTED (grpc.StatusCode attribute)</a>
  1155. </dt>
  1156. <dt><a href="grpc.html#grpc.StatusCode.UNKNOWN">UNKNOWN (grpc.StatusCode attribute)</a>
  1157. </dt>
  1158. <dt><a href="grpc.beta.html#grpc.beta.implementations.Channel.unsubscribe">unsubscribe() (grpc.beta.implementations.Channel method)</a>
  1159. </dt>
  1160. <dd><dl>
  1161. <dt><a href="grpc.html#grpc.Channel.unsubscribe">(grpc.Channel method)</a>
  1162. </dt>
  1163. </dl></dd>
  1164. </dl></td>
  1165. </tr></table>
  1166. <h2 id="V">V</h2>
  1167. <table style="width: 100%" class="indextable genindextable"><tr>
  1168. <td style="width: 33%" valign="top"><dl>
  1169. <dt><a href="grpc.framework.interfaces.links.html#grpc.framework.interfaces.links.links.Protocol.value">value (grpc.framework.interfaces.links.links.Protocol attribute)</a>
  1170. </dt>
  1171. </dl></td>
  1172. </tr></table>
  1173. <h2 id="W">W</h2>
  1174. <table style="width: 100%" class="indextable genindextable"><tr>
  1175. <td style="width: 33%" valign="top"><dl>
  1176. <dt><a href="grpc.html#grpc.StreamUnaryMultiCallable.with_call">with_call() (grpc.StreamUnaryMultiCallable method)</a>
  1177. </dt>
  1178. <dd><dl>
  1179. <dt><a href="grpc.html#grpc.UnaryUnaryMultiCallable.with_call">(grpc.UnaryUnaryMultiCallable method)</a>
  1180. </dt>
  1181. </dl></dd>
  1182. </dl></td>
  1183. <td style="width: 33%" valign="top"><dl>
  1184. <dt><a href="grpc.framework.foundation.html#grpc.framework.foundation.callable_util.with_exceptions_logged">with_exceptions_logged() (in module grpc.framework.foundation.callable_util)</a>
  1185. </dt>
  1186. </dl></td>
  1187. </tr></table>
  1188. </div>
  1189. </div>
  1190. <footer>
  1191. <hr/>
  1192. <div role="contentinfo">
  1193. <p>
  1194. &copy; Copyright 2016, Author.
  1195. </p>
  1196. </div>
  1197. Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>.
  1198. </footer>
  1199. </div>
  1200. </div>
  1201. </section>
  1202. </div>
  1203. <script type="text/javascript">
  1204. var DOCUMENTATION_OPTIONS = {
  1205. URL_ROOT:'./',
  1206. VERSION:'0.15.0',
  1207. COLLAPSE_INDEX:false,
  1208. FILE_SUFFIX:'.html',
  1209. HAS_SOURCE: true
  1210. };
  1211. </script>
  1212. <script type="text/javascript" src="_static/jquery.js"></script>
  1213. <script type="text/javascript" src="_static/underscore.js"></script>
  1214. <script type="text/javascript" src="_static/doctools.js"></script>
  1215. <script type="text/javascript" src="_static/js/theme.js"></script>
  1216. <script type="text/javascript">
  1217. jQuery(function () {
  1218. SphinxRtdTheme.StickyNav.enable();
  1219. });
  1220. </script>
  1221. </body>
  1222. </html>