SignalArbiter

Struct SignalArbiter 

Source
pub struct SignalArbiter { /* private fields */ }
Available on crate feature signals only.
Expand description

Shared arbiter used to register and dispatch named signals.

Implementations§

Source§

impl SignalArbiter

Source

pub fn new() -> Self

Creates a new, empty signal arbiter.

Source

pub fn set_global_broadcast_capacity(capacity: usize)

Sets the global broadcast capacity used for topic channels.

This affects all newly created topics across all arbiters.

Source

pub fn global_broadcast_capacity() -> usize

Returns the current global broadcast capacity.

Source

pub fn on<F, Fut>(&self, id: impl Into<String>, handler: F)
where F: Fn(Signal) -> Fut + Send + Sync + 'static, Fut: Future<Output = ()> + Send + 'static,

Registers a handler for the given signal id.

Handlers are invoked in registration order whenever a matching signal is emitted.

Source

pub fn subscribe(&self, id: impl AsRef<str>) -> Receiver<Signal>

Subscribes to a broadcast channel for the given signal id.

This is useful for long-lived listeners such as metrics collectors, background workers, plugins, or middleware driven tasks.

Source

pub fn subscribe_prefix(&self, prefix: impl AsRef<str>) -> Receiver<Signal>

Subscribes to all signals whose id starts with the given prefix.

For example, subscribe_prefix("request.") will receive request.started, request.completed, etc.

Source

pub fn subscribe_all(&self) -> Receiver<Signal>

Subscribes to all signals regardless of their id.

This is a special variant that receives every emitted signal. Internally uses a wildcard prefix matching (empty prefix = all signals).

Source

pub fn subscribe_filtered<F>( &self, id: impl AsRef<str>, filter: F, ) -> SignalStream
where F: Fn(&Signal) -> bool + Send + Sync + 'static,

Subscribes using a filter function on top of an id-based subscription.

This spawns a background task that forwards only matching signals into an unbounded channel, which is returned as a SignalStream.

Source

pub async fn once(&self, id: impl AsRef<str>) -> Option<Signal>

Waits for the next occurrence of a signal id (oneshot-style).

This uses the broadcast channel under the hood but resolves on the first successfully received signal.

Source

pub fn register_rpc<Req, Res, F, Fut>(&self, id: impl Into<String>, f: F)
where Req: Send + Sync + 'static, Res: Send + Sync + 'static, F: Fn(Arc<Req>) -> Fut + Send + Sync + 'static, Fut: Future<Output = Res> + Send + 'static,

Registers a typed RPC handler under the given id.

This allows request/response style interactions over the same arbiter, using type-erased storage internally for flexibility.

Source

pub async fn call_rpc_arc<Req, Res>( &self, id: impl AsRef<str>, req: Req, ) -> Option<Arc<Res>>
where Req: Send + Sync + 'static, Res: Send + Sync + 'static,

Calls a typed RPC handler and returns a shared pointer to the response.

Source

pub async fn call_rpc_result<Req, Res>( &self, id: impl AsRef<str>, req: Req, ) -> RpcResult<Res>
where Req: Send + Sync + 'static, Res: Send + Sync + Clone + 'static,

Calls a typed RPC handler and returns an owned response with an error type.

Source

pub async fn call_rpc<Req, Res>( &self, id: impl AsRef<str>, req: Req, ) -> Option<Res>
where Req: Send + Sync + 'static, Res: Send + Sync + Clone + 'static,

Calls a typed RPC handler and returns an owned response.

Source

pub async fn call_rpc_timeout<Req, Res>( &self, id: impl AsRef<str>, req: Req, dur: Duration, ) -> Result<Res, RpcTimeoutError>
where Req: Send + Sync + 'static, Res: Send + Sync + Clone + 'static,

Calls a typed RPC handler with a timeout.

Source

pub async fn emit(&self, signal: Signal)

Emits a signal and awaits all registered handlers.

Handlers run concurrently and this method resolves once all handlers have completed.

Source

pub async fn emit_app(signal: Signal)

Emits a signal using the global application-level arbiter.

Source

pub fn register_exporter<F>(&self, exporter: F)
where F: Fn(&Signal) + Send + Sync + 'static,

Registers a global exporter that is invoked for every emitted signal.

Exporters are merged when routers are merged, similar to handlers.

Source

pub fn signal_ids(&self) -> Vec<String>

Returns a list of known signal ids (exact topics) currently registered.

Source

pub fn signal_prefixes(&self) -> Vec<String>

Returns a list of known signal prefixes (topics ending with ‘*’).

Source

pub fn rpc_ids(&self) -> Vec<String>

Returns a list of registered RPC ids.

Trait Implementations§

Source§

impl Clone for SignalArbiter

Source§

fn clone(&self) -> SignalArbiter

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Default for SignalArbiter

Source§

fn default() -> SignalArbiter

Returns the “default value” for a type. Read more

Auto Trait Implementations§

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<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<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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FutureExt for T

Source§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
Source§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
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> 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 = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
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<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
Source§

impl<T> ErasedDestructor for T
where T: 'static,