mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-28 01:52:57 +01:00
make AcceptorTimeout::new public
This commit is contained in:
parent
bbcd618304
commit
401ea574c0
@ -182,7 +182,8 @@ pub struct AcceptorTimeout<T> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<T: NewService> AcceptorTimeout<T> {
|
impl<T: NewService> AcceptorTimeout<T> {
|
||||||
pub(crate) fn new(timeout: u64, inner: T) -> Self {
|
/// Create new `AcceptorTimeout` instance. timeout is in milliseconds.
|
||||||
|
pub fn new(timeout: u64, inner: T) -> Self {
|
||||||
Self {
|
Self {
|
||||||
inner,
|
inner,
|
||||||
timeout: Duration::from_millis(timeout),
|
timeout: Duration::from_millis(timeout),
|
||||||
|
Loading…
Reference in New Issue
Block a user