1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-08-22 16:45:05 +02:00

migrate to actix-service crate

This commit is contained in:
Nikolay Kim
2018-12-09 10:15:49 -08:00
parent a60bf691d5
commit 43e14818c4
17 changed files with 17 additions and 24 deletions

View File

@@ -1,7 +1,7 @@
use actix_service::{IntoNewService, IntoService, NewService, Service};
use futures::{try_ready, Async, Future, Poll};
use super::counter::{Counter, CounterGuard};
use super::service::{IntoNewService, IntoService, NewService, Service};
/// InFlight - new service for service that can limit number of in-flight
/// async requests.