mirror of
https://github.com/fafhrd91/actix-net
synced 2025-08-29 17:29:19 +02:00
Compare commits
2 Commits
codec-0.2.
...
service-v1
Author | SHA1 | Date | |
---|---|---|---|
|
c094f84b85 | ||
|
25012d290a |
@@ -34,7 +34,7 @@ uri = ["http"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-service = "1.0.0-alpha.3"
|
actix-service = "1.0.0-alpha.3"
|
||||||
actix-codec = "0.2.0-alpha.3"
|
actix-codec = "0.2.0"
|
||||||
actix-utils = "1.0.0-alpha.3"
|
actix-utils = "1.0.0-alpha.3"
|
||||||
actix-rt = "1.0.0-alpha.3"
|
actix-rt = "1.0.0-alpha.3"
|
||||||
derive_more = "0.99.2"
|
derive_more = "0.99.2"
|
||||||
|
@@ -19,7 +19,7 @@ path = "src/lib.rs"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-service = "1.0.0-alpha.3"
|
actix-service = "1.0.0-alpha.3"
|
||||||
actix-codec = "0.2.0-alpha.2"
|
actix-codec = "0.2.0"
|
||||||
actix-utils = "1.0.0-alpha.2"
|
actix-utils = "1.0.0-alpha.2"
|
||||||
actix-rt = "1.0.0-alpha.2"
|
actix-rt = "1.0.0-alpha.2"
|
||||||
bytes = "0.5"
|
bytes = "0.5"
|
||||||
|
@@ -96,7 +96,7 @@ where
|
|||||||
type Error = <Codec as Encoder>::Error;
|
type Error = <Codec as Encoder>::Error;
|
||||||
|
|
||||||
fn poll_ready(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
fn poll_ready(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
||||||
if self.framed.is_ready() {
|
if self.framed.is_write_ready() {
|
||||||
Poll::Ready(Ok(()))
|
Poll::Ready(Ok(()))
|
||||||
} else {
|
} else {
|
||||||
Poll::Pending
|
Poll::Pending
|
||||||
|
@@ -23,7 +23,7 @@ default = []
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
actix-service = "1.0.0-alpha.4"
|
actix-service = "1.0.0-alpha.4"
|
||||||
actix-rt = "1.0.0-alpha.3"
|
actix-rt = "1.0.0-alpha.3"
|
||||||
actix-codec = "0.2.0-alpha.3"
|
actix-codec = "0.2.0"
|
||||||
actix-utils = "1.0.0-alpha.3"
|
actix-utils = "1.0.0-alpha.3"
|
||||||
|
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [1.0.0] - 2019-12-11
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
* Add Clone impl for Apply service
|
* Add Clone impl for Apply service
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-service"
|
name = "actix-service"
|
||||||
version = "1.0.0-alpha.4"
|
version = "1.0.0"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Actix service"
|
description = "Actix service"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
|
@@ -7,16 +7,14 @@ use std::task::{Context, Poll};
|
|||||||
use crate::transform_err::TransformMapInitErr;
|
use crate::transform_err::TransformMapInitErr;
|
||||||
use crate::{IntoServiceFactory, Service, ServiceFactory};
|
use crate::{IntoServiceFactory, Service, ServiceFactory};
|
||||||
|
|
||||||
/// Apply transform to a service. Function returns
|
/// Apply transform to a service.
|
||||||
/// services factory that in initialization creates
|
pub fn apply<T, S, U>(t: T, factory: U) -> ApplyTransform<T, S>
|
||||||
/// service and applies transform to this service.
|
|
||||||
pub fn apply<T, S, U>(t: T, service: U) -> ApplyTransform<T, S>
|
|
||||||
where
|
where
|
||||||
S: ServiceFactory,
|
S: ServiceFactory,
|
||||||
T: Transform<S::Service, InitError = S::InitError>,
|
T: Transform<S::Service, InitError = S::InitError>,
|
||||||
U: IntoServiceFactory<S>,
|
U: IntoServiceFactory<S>,
|
||||||
{
|
{
|
||||||
ApplyTransform::new(t, service.into_factory())
|
ApplyTransform::new(t, factory.into_factory())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The `Transform` trait defines the interface of a service factory that wraps inner service
|
/// The `Transform` trait defines the interface of a service factory that wraps inner service
|
||||||
|
@@ -33,7 +33,7 @@ nativetls = ["native-tls", "tokio-tls"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-service = "1.0.0-alpha.3"
|
actix-service = "1.0.0-alpha.3"
|
||||||
actix-codec = "0.2.0-alpha.3"
|
actix-codec = "0.2.0"
|
||||||
actix-utils = "1.0.0-alpha.3"
|
actix-utils = "1.0.0-alpha.3"
|
||||||
actix-rt = "1.0.0-alpha.3"
|
actix-rt = "1.0.0-alpha.3"
|
||||||
derive_more = "0.99.2"
|
derive_more = "0.99.2"
|
||||||
|
@@ -20,7 +20,7 @@ path = "src/lib.rs"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
actix-service = "1.0.0-alpha.3"
|
actix-service = "1.0.0-alpha.3"
|
||||||
actix-rt = "1.0.0-alpha.3"
|
actix-rt = "1.0.0-alpha.3"
|
||||||
actix-codec = "0.2.0-alpha.3"
|
actix-codec = "0.2.0"
|
||||||
bytes = "0.5.2"
|
bytes = "0.5.2"
|
||||||
either = "1.5.2"
|
either = "1.5.2"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
|
Reference in New Issue
Block a user