KernelDispatcher

Struct KernelDispatcher 

Source
pub struct KernelDispatcher { /* private fields */ }
Expand description

Routes messages by type_id to registered handler kernels.

The dispatcher maintains a routing table mapping message type IDs to kernel IDs. When a message envelope is dispatched, the dispatcher looks up the type_id in the routing table and forwards the message to the appropriate kernel via the K2K broker.

Implementations§

Source§

impl KernelDispatcher

Source

pub fn builder() -> DispatcherBuilder

Create a new dispatcher builder.

Source

pub fn new(broker: Arc<K2KBroker>) -> Self

Create a new dispatcher with the given broker.

Source

pub fn with_config(broker: Arc<K2KBroker>, config: DispatcherConfig) -> Self

Create a new dispatcher with custom configuration.

Source

pub fn register<M: PersistentMessage>(&self, kernel_id: KernelId)

Register a message type to route to a specific kernel.

§Type Parameters
  • M: A message type implementing PersistentMessage
§Arguments
  • kernel_id: The kernel that will handle messages of this type
Source

pub fn register_with_name<M: PersistentMessage>( &self, kernel_id: KernelId, handler_name: &str, )

Register a message type with a custom handler name.

Source

pub fn register_route(&self, type_id: u64, kernel_id: KernelId)

Register a route with explicit type_id (for dynamic registration).

Source

pub fn unregister(&self, type_id: u64)

Unregister a message type.

Source

pub fn get_route(&self, type_id: u64) -> Option<KernelId>

Get the kernel ID for a message type.

Source

pub fn has_route(&self, type_id: u64) -> bool

Check if a route exists for a type.

Source

pub fn routes(&self) -> Vec<(u64, KernelId)>

Get all registered routes.

Source

pub fn get_dispatch_table(&self, kernel_id: &KernelId) -> Option<DispatchTable>

Get the dispatch table for a kernel (for CUDA codegen).

Source

pub async fn dispatch( &self, envelope: MessageEnvelope, ) -> Result<DeliveryReceipt>

Dispatch a message envelope to the appropriate kernel.

The type_id from the envelope header is used to look up the destination kernel. If no route exists for the type_id, returns an error.

§Returns
  • Ok(DeliveryReceipt) with delivery status
  • Err(RingKernelError::UnknownMessageType) if no route exists
Source

pub async fn dispatch_from( &self, source: KernelId, envelope: MessageEnvelope, ) -> Result<DeliveryReceipt>

Dispatch a message from a specific source kernel.

Source

pub async fn dispatch_message<M: PersistentMessage>( &self, message: &M, timestamp: HlcTimestamp, ) -> Result<DeliveryReceipt>

Dispatch a typed message.

Creates an envelope from the message and dispatches it.

Source

pub fn metrics(&self) -> DispatcherMetrics

Get current metrics.

Source

pub fn reset_metrics(&self)

Reset metrics.

Source

pub fn broker(&self) -> &Arc<K2KBroker>

Get a reference to the underlying K2K broker.

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

Source§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
Source§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
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<F, W, T, D> Deserialize<With<T, W>, D> for F
where W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,

Source§

fn deserialize( &self, deserializer: &mut D, ) -> Result<With<T, W>, <D as Fallible>::Error>

Deserializes using the given deserializer
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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

Source§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Gets the layout of the type.
Source§

impl<T> Pointee for T

Source§

type Metadata = ()

The type for metadata in pointers and references to 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.
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