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>) -> KernelDispatcher

Create a new dispatcher with the given broker.

Source

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

Create a new dispatcher with custom configuration.

Source

pub fn register<M>(&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>(&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, RingKernelError>

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, RingKernelError>

Dispatch a message from a specific source kernel.

Source

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

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

Source§

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

Gets the layout of the type.
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> 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