Files
jsonrpc_client_transports
jsonrpc_core
jsonrpc_core_client
jsonrpc_derive
jsonrpc_http_server
jsonrpc_ipc_server
jsonrpc_pubsub
jsonrpc_pubsub_examples
jsonrpc_server_utils
jsonrpc_stdio_server
jsonrpc_tcp_server
jsonrpc_test
jsonrpc_ws_server
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! Session statistics.

/// Session id
pub type SessionId = u64;

/// Keeps track of open sessions
pub trait SessionStats: Send + Sync + 'static {
	/// Executed when new session is opened.
	fn open_session(&self, id: SessionId);
	/// Executed when session is closed.
	fn close_session(&self, id: SessionId);
}