romp 0.5.2

STOMP server and WebSockets platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Workflow concerns application logic, either in built STOMP message handling, admin functions
//! or bespoke application specific functions.

pub mod admin_router;
pub mod console;
pub mod context;
pub mod destination;
pub mod filter;
pub mod http_router;
pub mod internal;
pub mod router;
pub mod sha_auth;

/// Workflow/filter handled the request not further processing needed.
pub const HANDLED: bool = true;
/// Workflow/filter indicates the filter chain should continue with the next filter.
pub const CONTINUE: bool = false;