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
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
//! 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();
//! # }
//!```

#![allow(dead_code)]

extern crate hyper;
extern crate serde;
extern crate serde_json;
extern crate tokio;
extern crate byteorder;
extern crate log;
extern crate tokio_rustls;
extern crate rustls;
extern crate regex;
#[macro_use]
extern crate lazy_static;
extern crate backoff;
extern crate miniz_oxide;
extern crate gethostname;

use std::collections::HashMap;
use std::collections::HashSet;
use std::sync::Arc;
use std::sync::atomic::{AtomicBool, Ordering};

use log::*;
use crate::tokio::io::AsyncWrite;
use crate::tokio::io::AsyncRead;
use crate::tokio::io::AsyncWriteExt;
use crate::tokio::io::AsyncReadExt;
use std::convert::TryFrom;
use failure::{Error};

mod connection;
mod producer;
mod consumer;
mod compression;
mod connection_config;

pub use connection::
    { NSQTopic
    , NSQChannel
    , NSQEvent
    , NSQMessage
    , NSQSampleRate
    , NSQRequeueDelay
    };

pub use producer::
    { NSQProducerConfig
    , NSQProducer
    };

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

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

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