1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
use *;
/// Romp server entry point
///
/// Custom filters can be added as follow...
///
/// ```
///
/// // Filter structs have an init() method
/// romp_stomp_filter(Box::new(PingFilter {}));
///
/// // Http Filter structs different error handling
/// romp_http_filter(Box::new(HelloFilter {}));
///
/// // STOMP filters can be written as closures
/// romp_stomp(|ctx, msg| {
/// if let Some(hdr) = msg.get_header("special-header") {
/// let mut session = ctx.session.write().unwrap();
/// session.send_message(get_response_ok("howdy".to_string()));
/// return Ok(true);
/// }
/// Ok(false)
/// });
///
/// // as can HTTP filters
/// romp_http(|ctx, msg| {
/// if "/pingerooni".eq(ctx.attributes.get("romp.uri").unwrap()) {
/// let mut session = ctx.session.write().unwrap();
/// session.send_message(Arc::new(get_http_ok_msg()));
/// return Ok(true);
/// }
/// Ok(false)
/// });
/// ///
///
/// ```
///
/// Then bootstrap the server
///
/// ```
/// tokio::run(bootstrap_romp());
/// ```