Home
last modified time | relevance | path

Searched refs:poll (Results 1 – 11 of 11) sorted by relevance

/tonic/tonic-web/src/
H A Dclient.rs95 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll() function
96 let res = ready!(self.project().inner.poll(cx)); in poll()
H A Dservice.rs161 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll() function
166 let res = ready!(future.poll(cx))?; in poll()
170 CaseProj::Other { future } => future.poll(cx), in poll()
/tonic/tonic/src/transport/channel/service/
H A Dreconnect.rs87 match Pin::new(f).poll(cx) { in poll_ready()
209 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll() function
213 InnerProj::Future(fut) => fut.poll(cx).map_err(Into::into), in poll()
/tonic/tonic/src/transport/service/
H A Dgrpc_timeout.rs80 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll() function
83 if let ready @ Poll::Ready(_) = this.inner.poll(cx) { in poll()
88 ready!(sleep.poll(cx)); in poll()
/tonic/tonic/src/service/
H A Drecover_error.rs92 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll() function
93 match ready!(self.project().inner.poll(cx)) { in poll()
H A Drouter.rs173 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll() method
174 match ready!(Pin::new(&mut self.as_mut().0).poll(cx)) { in poll()
H A Dinterceptor.rs199 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll() function
201 KindProj::Future(future) => future.poll(cx).map_ok(|res| res.map(ResponseBody::wrap)), in poll()
/tonic/tonic/src/transport/channel/
H A Dmod.rs226 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll() method
228 .poll(cx) in poll()
/tonic/tests/integration_tests/tests/
H A Dcomplex_tower_middleware.rs84 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll() function
/tonic/tonic/src/transport/server/
H A Dio_stream.rs90 let select_output = ready!(pin!(select(&mut projected.inner, tasks)).poll(cx)); in poll_next()
H A Dmod.rs1040 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll() function
1044 let response: Response<ResBody> = ready!(this.inner.poll(cx)).map_err(Into::into)?; in poll()
1123 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { in poll() function
1125 Some(fut) => fut.poll(cx).map(|output| { in poll()