mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 23:51:06 +01:00
better naming
This commit is contained in:
parent
127cc270da
commit
9b7f2395e5
@ -100,10 +100,8 @@ impl<A> HttpMessage<A> where A: Actor<Context=HttpContext<A>> + Route
|
||||
HttpMessage(HttpMessageItem::Actor(act))
|
||||
}
|
||||
|
||||
/// Create response with empty body
|
||||
pub fn reply<I>(req: HttpRequest, msg: I) -> Self
|
||||
where I: IntoHttpResponse
|
||||
{
|
||||
/// Send response
|
||||
pub fn reply<I: IntoHttpResponse>(req: HttpRequest, msg: I) -> Self {
|
||||
HttpMessage(HttpMessageItem::Message(msg.into_response(req)))
|
||||
}
|
||||
|
||||
|
@ -66,10 +66,8 @@ pub trait Route: Actor<Context=HttpContext<Self>> {
|
||||
HttpMessage::stream(act)
|
||||
}
|
||||
|
||||
/// Create response
|
||||
fn http_reply<I>(req: HttpRequest, msg: I) -> HttpMessage<Self>
|
||||
where I: IntoHttpResponse
|
||||
{
|
||||
/// Send response
|
||||
fn http_reply<I: IntoHttpResponse>(req: HttpRequest, msg: I) -> HttpMessage<Self> {
|
||||
HttpMessage::reply(req, msg)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user