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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//! A Rust [NSQ](https://nsq.io/) client built on [Tokio](https://github.com/tokio-rs/tokio).
//! Tokio NSQ aims to be a feature complete NSQ client implementation.
//!
//! ## A basic consumer example:
//!```no_run
//! use tokio_nsq::*;
//! # #[tokio::main]
//! # async fn main() {
//!
//! let topic   = NSQTopic::new("names").unwrap();
//! let channel = NSQChannel::new("first").unwrap();
//!
//! let mut addresses = std::collections::HashSet::new();
//! addresses.insert("http://127.0.0.1:4161".to_string());
//!
//! let mut consumer = NSQConsumerConfig::new(topic, channel)
//!    .set_max_in_flight(15)
//!    .set_sources(
//!        NSQConsumerConfigSources::Lookup(
//!            NSQConsumerLookupConfig::new().set_addresses(addresses)
//!        )
//!    )
//!    .build();
//!
//! let mut message = consumer.consume_filtered().await.unwrap();
//!
//! let message_body_str = std::str::from_utf8(&message.body).unwrap();
//! println!("message body = {}", message_body_str);
//!
//! message.finish();
//! # }
//! ```
//!
//! ## Logging
//! Logging for Tokio NSQ is done via the common [log](https://crates.io/crates/log) facade.
//! If you desire logs from Tokio NSQ you must integrate an additional crate implementing the
//! log API such as [env_logger](https://crates.io/crates/env_logger), or
//! [simple-logging](https://crates.io/crates/simple-logging).

#![allow(dead_code)]

#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate matches;

mod connection;
mod connection_config;
mod consumer;
mod producer;
mod snappy;
mod with_stopper;

pub use connection::{NSQEvent, NSQMessage, NSQRequeueDelay};

pub use producer::{NSQProducer, NSQProducerConfig};

pub use consumer::{
    NSQConsumer, NSQConsumerConfig, NSQConsumerConfigSources,
    NSQConsumerLookupConfig,
};

pub use connection_config::{
    NSQChannel, NSQConfigShared, NSQConfigSharedCompression,
    NSQConfigSharedTLS, NSQDeflateLevel, NSQSampleRate, NSQTopic,
};

mod built_info {
    include!(concat!(env!("OUT_DIR"), "/built.rs"));
}