pub struct BidiTransport<B: TransportBinding>{ /* private fields */ }Expand description
A cloneable handle to the connection and topic ledger task.
Implementations§
Source§impl<B: TransportBinding> BidiTransport<B>
impl<B: TransportBinding> BidiTransport<B>
Sourcepub fn new<O, Fut>(opener: O, initially_suspended: bool) -> Self
pub fn new<O, Fut>(opener: O, initially_suspended: bool) -> Self
Open lazily through opener. A suspended transport waits for resume.
Sourcepub fn new_within<O, Fut>(
opener: O,
initially_suspended: bool,
mutate: MutateLimits,
) -> Self
pub fn new_within<O, Fut>( opener: O, initially_suspended: bool, mutate: MutateLimits, ) -> Self
Open lazily, chunking interest updates to what the deployment published (CFG-064).
Sourcepub async fn lease(
&self,
subs: Vec<(Topic, B::Cursor)>,
depth: usize,
) -> Result<TopicLease<B>, TransportError>
pub async fn lease( &self, subs: Vec<(Topic, B::Cursor)>, depth: usize, ) -> Result<TopicLease<B>, TransportError>
Register topics with exclusive floors and a bounded event channel. Refuse empty leases and leases that would exceed the wire topic limit. While suspended, register locally without opening a connection.
Sourcepub async fn lease_ordered(
&self,
subs: Vec<(Topic, B::Cursor)>,
depth: usize,
limits: IncomingBatchLimits,
) -> Result<TopicLease<B>, TransportError>
pub async fn lease_ordered( &self, subs: Vec<(Topic, B::Cursor)>, depth: usize, limits: IncomingBatchLimits, ) -> Result<TopicLease<B>, TransportError>
Register an ordered raw receiver. Receipt acknowledgements raise its resume floors.
Sourcepub async fn suspend(&self) -> Result<(), TransportError>
pub async fn suspend(&self) -> Result<(), TransportError>
Half-close the connection. Keep leases and positions for resume.
Sourcepub fn enqueue_suspend(&self) -> Result<Receiver<()>, TransportError>
pub fn enqueue_suspend(&self) -> Result<Receiver<()>, TransportError>
Queue suspend synchronously so callers can order lifecycle commands.
Sourcepub async fn resume(&self) -> Result<(), TransportError>
pub async fn resume(&self) -> Result<(), TransportError>
Reopen and wait until every update is acknowledged and every target is met. A later suspend or removal of the last lease also releases this waiter.
Sourcepub fn enqueue_resume(&self) -> Result<Receiver<()>, TransportError>
pub fn enqueue_resume(&self) -> Result<Receiver<()>, TransportError>
Queue resume without waiting for catch-up. Return its completion receiver.
Trait Implementations§
Source§impl<B: TransportBinding> Clone for BidiTransport<B>
impl<B: TransportBinding> Clone for BidiTransport<B>
Auto Trait Implementations§
impl<B> Freeze for BidiTransport<B>
impl<B> RefUnwindSafe for BidiTransport<B>
impl<B> Send for BidiTransport<B>
impl<B> Sync for BidiTransport<B>
impl<B> Unpin for BidiTransport<B>
impl<B> UnsafeUnpin for BidiTransport<B>
impl<B> UnwindSafe for BidiTransport<B>
Blanket Implementations§
§impl<T> AggregateExpressionMethods for T
impl<T> AggregateExpressionMethods for T
§fn aggregate_distinct(self) -> Self::Outputwhere
Self: DistinctDsl,
fn aggregate_distinct(self) -> Self::Outputwhere
Self: DistinctDsl,
DISTINCT modifier for aggregate functions Read more§fn aggregate_all(self) -> Self::Outputwhere
Self: AllDsl,
fn aggregate_all(self) -> Self::Outputwhere
Self: AllDsl,
ALL modifier for aggregate functions Read more§fn aggregate_filter<P>(self, f: P) -> Self::Outputwhere
P: AsExpression<Bool>,
Self: FilterDsl<<P as AsExpression<Bool>>::Expression>,
fn aggregate_filter<P>(self, f: P) -> Self::Outputwhere
P: AsExpression<Bool>,
Self: FilterDsl<<P as AsExpression<Bool>>::Expression>,
§fn aggregate_order<O>(self, o: O) -> Self::Outputwhere
Self: OrderAggregateDsl<O>,
fn aggregate_order<O>(self, o: O) -> Self::Outputwhere
Self: OrderAggregateDsl<O>,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSend for T
impl<T> DowncastSend for T
§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request§impl<T> IntoSql for T
impl<T> IntoSql for T
§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Layered].