acktor-ipc 1.0.6

Interprocess communication support for the acktor actor framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use acktor::{Address, Message};

use crate::session::Session;

/// A message which is used to notify the receiver of an IPC session is created or deleted.
#[derive(Debug, Clone)]
pub enum NodeEvent {
    SessionCreated(Address<Session>, String),
    SessionDeleted(Address<Session>),
}

impl Message for NodeEvent {
    type Result = ();
}