Skip to content

Commit

Permalink
Merge pull request #402 from kelnos/public-connection-iter
Browse files Browse the repository at this point in the history
Make rumqttc::client::Iter public
  • Loading branch information
de-sh committed Jun 16, 2022
2 parents cba86b6 + 77beb7b commit ce1d42c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rumqttc/src/lib.rs
Expand Up @@ -113,7 +113,7 @@ mod state;
mod tls;
pub mod v5;

pub use client::{AsyncClient, Client, ClientError, Connection};
pub use client::{AsyncClient, Client, ClientError, Connection, Iter};
pub use eventloop::{ConnectionError, Event, EventLoop};
pub use flume::{SendError, Sender, TrySendError};
pub use mqttbytes::v4::*;
Expand Down
2 changes: 1 addition & 1 deletion rumqttc/src/v5/mod.rs
Expand Up @@ -17,7 +17,7 @@ mod state;
#[cfg(feature = "use-rustls")]
mod tls;

pub use client::{AsyncClient, Client, ClientError, Connection};
pub use client::{AsyncClient, Client, ClientError, Connection, Iter};
pub use eventloop::{ConnectionError, EventLoop};
pub use flume::{SendError, Sender, TrySendError};
pub use notifier::Notifier;
Expand Down

0 comments on commit ce1d42c

Please sign in to comment.