nsqueue 0.1.5

Rust client for the NSQ realtime message processing system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod commands {
    pub const VERSION_2: &'static str = "  V2";
    
    pub const PUB: &'static str = "PUB";
    pub const MPUB: &'static str = "MPUB";
    pub const DPUB: &'static str = "DPUB";

    pub const SUB: &'static str = "SUB";

    pub const RDY: &'static str = "RDY";
    pub const FIN: &'static str = "FIN";

    pub const NOP: &'static str = "NOP";
    pub const IDENTIFY: &'static str = "IDENTIFY";
}