Struct ChannelBridgeHandler

Source
pub struct ChannelBridgeHandler<H: ExchangeHandler, R: MessageRouter> { /* private fields */ }
Expand description

Channel bridge handler

Implementations§

Source§

impl<H: ExchangeHandler, R: MessageRouter> ChannelBridgeHandler<H, R>

Source

pub fn new(inner: H, router: R) -> Self

Create a new channel bridge handler

Source

pub fn register_subscription( &self, key: String, sender: UnboundedSender<Box<dyn Any + Send>>, subscription_type: SubscriptionType, )

Register a subscription channel

Source

pub fn unregister_subscription(&self, key: &str) -> Option<SubscriptionChannel>

Unregister a subscription

Source

pub fn subscription_count(&self) -> usize

Get the number of active subscriptions

Source

pub fn clear_subscriptions(&self)

Clear all subscriptions

Source

pub const fn inner(&self) -> &H

Get inner handler reference

Source

pub const fn inner_mut(&mut self) -> &mut H

Get inner handler mutable reference

Trait Implementations§

Source§

impl<H: ExchangeHandler, R: MessageRouter> ExchangeHandler for ChannelBridgeHandler<H, R>

Source§

fn exchange(&self) -> Exchange

Get the exchange type
Source§

fn get_subscriptions<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = WebSocketResult<Vec<Message>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Get subscription messages
Source§

fn authenticate<'life0, 'async_trait>( &'life0 mut self, ) -> Pin<Box<dyn Future<Output = WebSocketResult<Option<Message>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Handle authentication if required
Source§

fn requires_auth(&self) -> bool

Check if the connection needs authentication
Source§

fn get_heartbeat(&self) -> Option<Message>

Get heartbeat message if required
Source§

fn heartbeat_interval(&self) -> Option<Duration>

Get heartbeat interval
Source§

impl<H: ExchangeHandler, R: MessageRouter> MessageHandler for ChannelBridgeHandler<H, R>

Source§

fn on_message<'life0, 'async_trait>( &'life0 mut self, message: Message, ) -> Pin<Box<dyn Future<Output = WebSocketResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Handle a received message
Source§

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

Handle connection established
Source§

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

Handle connection closed
Source§

fn on_error<'life0, 'async_trait>( &'life0 mut self, error: WebSocketError, ) -> Pin<Box<dyn Future<Output = WebSocketResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Handle errors
Source§

fn set_sender(&mut self, _sender: UnboundedSender<Message>)

Set the sender for outgoing messages (optional, default implementation does nothing)
Source§

fn send_message(&self, _message: Message) -> WebSocketResult<()>

Send a message through the WebSocket (optional, default implementation returns error)

Auto Trait Implementations§

§

impl<H, R> Freeze for ChannelBridgeHandler<H, R>
where H: Freeze, R: Freeze,

§

impl<H, R> !RefUnwindSafe for ChannelBridgeHandler<H, R>

§

impl<H, R> Send for ChannelBridgeHandler<H, R>

§

impl<H, R> Sync for ChannelBridgeHandler<H, R>

§

impl<H, R> Unpin for ChannelBridgeHandler<H, R>
where H: Unpin, R: Unpin,

§

impl<H, R> !UnwindSafe for ChannelBridgeHandler<H, R>

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

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

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

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

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.

§

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

§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: 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
§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: 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> Same for T

Source§

type Output = T

Should always be Self
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.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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

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