Skip to main content

BuiltinPluginRuntimeAdapter

Struct BuiltinPluginRuntimeAdapter 

Source
pub struct BuiltinPluginRuntimeAdapter<E>
where E: PluginEvent,
{ /* private fields */ }
Expand description

Built-in in-process runtime adapter that preserves the current replay and activation behavior while presenting a stable runtime contract to callers.

Implementations§

Source§

impl<E> BuiltinPluginRuntimeAdapter<E>
where E: PluginEvent,

Source

pub fn new( replay_hook: Arc<dyn Fn(ReplayEvent<E>) -> Pin<Box<dyn Future<Output = ()> + Send>> + Send + Sync>, replay_start_observer: Arc<dyn Fn(&str, bool) + Send + Sync>, replay_semaphore: Option<Arc<Semaphore>>, batch_timeout: Duration, idle_sleep: Duration, stop_log_prefix: impl Into<Arc<str>>, ) -> Self

Source

pub async fn prepare_targets( &self, targets: Vec<Box<dyn Target<E> + Send + Sync>>, ) -> PreparedActivation<E>

Source

pub async fn prepare_targets_cancellable( &self, targets: Vec<Box<dyn Target<E> + Send + Sync>>, cancellation: &CancellationToken, ) -> PreparedActivation<E>

Source

pub fn open_prepared_stores( &self, prepared: PreparedActivation<E>, ) -> (OpenedActivation<E>, PreparedActivation<E>)

Opens queue stores only after the previous runtime generation has been quiesced. Targets whose stores cannot be opened retain the established fault-isolation behavior and are returned for lock-free shutdown.

Source

pub fn try_activate_prepared( &self, opened: OpenedActivation<E>, ) -> (RuntimeActivation<E>, PreparedActivation<E>)

Source

pub async fn close_prepared( &self, prepared: PreparedActivation<E>, ) -> Result<(), TargetError>

Trait Implementations§

Source§

impl<E> Clone for BuiltinPluginRuntimeAdapter<E>
where E: PluginEvent + Clone,

Source§

fn clone(&self) -> BuiltinPluginRuntimeAdapter<E>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<E> PluginRuntimeAdapter<E> for BuiltinPluginRuntimeAdapter<E>
where E: PluginEvent,

Source§

fn activate_with_replay<'life0, 'async_trait>( &'life0 self, targets: Vec<Box<dyn Target<E> + Send + Sync>>, ) -> Pin<Box<dyn Future<Output = RuntimeActivation<E>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Source§

fn replace_runtime_targets<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, runtime: &'life1 mut TargetRuntimeManager<E>, replay_workers: &'life2 mut ReplayWorkerManager, activation: RuntimeActivation<E>, ) -> Pin<Box<dyn Future<Output = Result<(), TargetError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Source§

fn stop_replay_workers<'life0, 'life1, 'async_trait>( &'life0 self, replay_workers: &'life1 mut ReplayWorkerManager, ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

fn snapshot_runtime_status( &self, runtime: &TargetRuntimeManager<E>, replay_workers: &ReplayWorkerManager, ) -> RuntimeStatusSnapshot

Source§

fn snapshot_runtime_health<'life0, 'life1, 'async_trait>( &'life0 self, runtime: &'life1 TargetRuntimeManager<E>, ) -> Pin<Box<dyn Future<Output = Vec<RuntimeTargetHealthSnapshot>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

fn shutdown<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, runtime: &'life1 mut TargetRuntimeManager<E>, replay_workers: &'life2 mut ReplayWorkerManager, ) -> Pin<Box<dyn Future<Output = Result<(), TargetError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Auto Trait Implementations§

§

impl<E> !RefUnwindSafe for BuiltinPluginRuntimeAdapter<E>

§

impl<E> !UnwindSafe for BuiltinPluginRuntimeAdapter<E>

§

impl<E> Freeze for BuiltinPluginRuntimeAdapter<E>
where Arc<dyn Fn(ReplayEvent<E>) -> Pin<Box<dyn Future<Output = ()> + Send>> + Send + Sync>: Freeze,

§

impl<E> Send for BuiltinPluginRuntimeAdapter<E>
where Arc<dyn Fn(ReplayEvent<E>) -> Pin<Box<dyn Future<Output = ()> + Send>> + Send + Sync>: Send,

§

impl<E> Sync for BuiltinPluginRuntimeAdapter<E>
where Arc<dyn Fn(ReplayEvent<E>) -> Pin<Box<dyn Future<Output = ()> + Send>> + Send + Sync>: Sync,

§

impl<E> Unpin for BuiltinPluginRuntimeAdapter<E>
where Arc<dyn Fn(ReplayEvent<E>) -> Pin<Box<dyn Future<Output = ()> + Send>> + Send + Sync>: Unpin,

§

impl<E> UnsafeUnpin for BuiltinPluginRuntimeAdapter<E>
where Arc<dyn Fn(ReplayEvent<E>) -> Pin<Box<dyn Future<Output = ()> + Send>> + Send + Sync>: UnsafeUnpin,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

Source§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

Source§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

Source§

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self, E>

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> CompatExt for T

Source§

fn compat(self) -> Compat<T>
where T: Sized,

Applies the Compat adapter by value. Read more
Source§

fn compat_ref(&self) -> Compat<&T>

Applies the Compat adapter by shared reference. Read more
Source§

fn compat_mut(&mut self) -> Compat<&mut T>

Applies the Compat adapter by mutable reference. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromExt for T

Source§

fn from_<T>(t: T) -> Self
where Self: From<T>,

Source§

impl<T> FromRef<T> for T
where T: Clone,

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
Source§

impl<T> IntoExt for T

Source§

fn into_<T>(self) -> T
where Self: Into<T>,

Source§

impl<T> IntoRequest<T> for T

Source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
Source§

impl<L> LayerExt<L> for L

Source§

fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>
where L: Layer<S>,

Applies the layer to a service and wraps it in Layered.
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T> TryFromExt for T

Source§

fn try_from_<T>(t: T) -> Result<Self, Self::Error>
where Self: TryFrom<T>,

Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> TryIntoExt for T

Source§

fn try_into_<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more