From 7642967d8cf39fcd1fa558b51c7959d15f20b224 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Mon, 18 Jan 2021 20:50:27 +0600 Subject: [PATCH] make public methods --- ntex/src/framed/dispatcher.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ntex/src/framed/dispatcher.rs b/ntex/src/framed/dispatcher.rs index 33a28d9d..b1460b99 100644 --- a/ntex/src/framed/dispatcher.rs +++ b/ntex/src/framed/dispatcher.rs @@ -92,8 +92,8 @@ where U: Decoder + Encoder + 'static, ::Item: 'static, { - /// Construct new `Dispatcher` instance with outgoing messages stream. - pub(crate) fn with>( + /// Construct new `Dispatcher` instance. + pub fn with>( io: T, state: State, service: F, @@ -136,7 +136,7 @@ where /// To disable timeout set value to 0. /// /// By default keep-alive timeout is set to 30 seconds. - pub(crate) fn keepalive_timeout(mut self, timeout: u16) -> Self { + pub fn keepalive_timeout(mut self, timeout: u16) -> Self { // register keepalive timer let prev = self.updated + Duration::from_secs(self.keepalive_timeout as u64); if timeout == 0 { @@ -159,7 +159,7 @@ where /// To disable timeout set value to 0. /// /// By default disconnect timeout is set to 1 seconds. - pub(crate) fn disconnect_timeout(self, val: u16) -> Self { + pub fn disconnect_timeout(self, val: u16) -> Self { self.state.set_disconnect_timeout(val); self }