rate-core 0.41.0

The RillRate embedded HTTP server.
Documentation
1
2
3
4
5
6
7
8
9
10
use super::link;
use crate::actors::client_session::ClientSession;
use meio::{ActionHandler, Actor, InteractionHandler, InterruptedBy, StartedBy};

pub trait Supervisor: Actor + InteractionHandler<link::GetClientAssistant<Self>> {
    type ClientAssistant: Actor
        + StartedBy<ClientSession<Self>>
        + InterruptedBy<ClientSession<Self>>
        + ActionHandler<link::ServiceIncoming>;
}