pub trait ProxySession {
// Required methods
fn protocol(&self) -> Protocol;
fn ready(&mut self, session: Rc<RefCell<dyn ProxySession>>) -> bool;
fn update_readiness(&mut self, token: Token, events: Ready);
fn close(&mut self);
fn timeout(&mut self, t: Token) -> bool;
fn last_event(&self) -> Instant;
fn print_session(&self);
fn frontend_token(&self) -> Token;
fn shutting_down(&mut self) -> bool;
// Provided methods
fn cluster_id(&self) -> Option<String> { ... }
fn session_address(&self) -> Option<SocketAddr> { ... }
}Expand description
trait that must be implemented by listeners and client sessions
Required Methods§
Sourcefn protocol(&self) -> Protocol
fn protocol(&self) -> Protocol
indicates the protocol associated with the session
this is used to distinguish sessions from listenrs, channels, metrics and timers
Sourcefn ready(&mut self, session: Rc<RefCell<dyn ProxySession>>) -> bool
fn ready(&mut self, session: Rc<RefCell<dyn ProxySession>>) -> bool
if a session received an event or can still execute, the event loop will call this method. Its result indicates if it can still execute, needs to connect to a backend server, close the session
Sourcefn update_readiness(&mut self, token: Token, events: Ready)
fn update_readiness(&mut self, token: Token, events: Ready)
if the event loop got an event for a token associated with the session, it will call this method on the session
Sourcefn close(&mut self)
fn close(&mut self)
close a session, frontend and backend sockets, remove the entries from the session manager slab
Sourcefn timeout(&mut self, t: Token) -> bool
fn timeout(&mut self, t: Token) -> bool
if a timeout associated with the session triggers, the event loop will call this method with the timeout’s token
Sourcefn last_event(&self) -> Instant
fn last_event(&self) -> Instant
last time the session got an event
Sourcefn print_session(&self)
fn print_session(&self)
display the session’s internal state (for debugging purpose)
Sourcefn frontend_token(&self) -> Token
fn frontend_token(&self) -> Token
get the token associated with the frontend
Sourcefn shutting_down(&mut self) -> bool
fn shutting_down(&mut self) -> bool
tell the session it has to shut down if possible
if the session handles HTTP requests, it will not close until the response is completely sent back to the client
Provided Methods§
Sourcefn cluster_id(&self) -> Option<String>
fn cluster_id(&self) -> Option<String>
Best-effort identifier of the cluster currently routed to by this
session. Returns None for ListenSession (no per-session
cluster), and for client sessions before routing has resolved.
H2 sessions multiplex many streams over one frontend token and may
touch several clusters; the returned value is whichever cluster
the session most recently keep-alive’d to. Used for log/metric
attribution, not for accounting (the tracker keeps the canonical
per-stream (cluster, IP) set).
Sourcefn session_address(&self) -> Option<SocketAddr>
fn session_address(&self) -> Option<SocketAddr>
Source address as observed by Sōzu, with proxy-protocol awareness.
HTTP/HTTPS/TCP client sessions return the parsed PROXY-protocol
source when present, else peer_addr. ListenSession returns
None. Used to attribute per-(cluster, source-IP) tracking and
access logs to the real client behind a layer-4 PROXY frontend.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".