acktor-ipc 1.0.1

Interprocess communication support for the acktor actor framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
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, Message)]
#[result_type(())]
pub enum NodeEvent {
    SessionCreated(Address<Session>, String),
    SessionDeleted(Address<Session>),
}