Trait jsonrpc_server_utils::session::SessionStats
source · [−]pub trait SessionStats: Send + Sync + 'static {
fn open_session(&self, id: SessionId);
fn close_session(&self, id: SessionId);
}
Expand description
Keeps track of open sessions
Required methods
fn open_session(&self, id: SessionId)
fn open_session(&self, id: SessionId)
Executed when new session is opened.
fn close_session(&self, id: SessionId)
fn close_session(&self, id: SessionId)
Executed when session is closed.