32 releases (12 stable)

4.3.1+deprecated Aug 7, 2024
4.3.0 Feb 4, 2024
4.2.0 Jan 21, 2023
4.1.0 Mar 2, 2022
1.0.0-alpha.2 Mar 30, 2019

#31 in #actix-actor

Download history 28317/week @ 2024-07-27 30554/week @ 2024-08-03 34565/week @ 2024-08-10 33038/week @ 2024-08-17 31224/week @ 2024-08-24 33252/week @ 2024-08-31 31866/week @ 2024-09-07 25713/week @ 2024-09-14 28026/week @ 2024-09-21 30528/week @ 2024-09-28 24551/week @ 2024-10-05 28744/week @ 2024-10-12 28847/week @ 2024-10-19 25706/week @ 2024-10-26 25624/week @ 2024-11-02 19977/week @ 2024-11-09

105,406 downloads per month
Used in 120 crates (85 directly)

MIT/Apache

1.5MB
33K SLoC

actix-web-actors

Actix actors support for Actix Web.

This crate is deprecated. Migrate to actix-ws.

crates.io Documentation Version License
dependency status Download Chat on Discord


lib.rs:

Actix actors support for Actix Web.

This crate is deprecated. Migrate to actix-ws.

Examples

use actix::{Actor, StreamHandler};
use actix_web::{get, web, App, Error, HttpRequest, HttpResponse, HttpServer};
use actix_web_actors::ws;

/// Define Websocket actor
struct MyWs;

impl Actor for MyWs {
    type Context = ws::WebsocketContext<Self>;
}

/// Handler for ws::Message message
impl StreamHandler<Result<ws::Message, ws::ProtocolError>> for MyWs {
    fn handle(&mut self, msg: Result<ws::Message, ws::ProtocolError>, ctx: &mut Self::Context) {
        match msg {
            Ok(ws::Message::Ping(msg)) => ctx.pong(&msg),
            Ok(ws::Message::Text(text)) => ctx.text(text),
            Ok(ws::Message::Binary(bin)) => ctx.binary(bin),
            _ => (),
        }
    }
}

#[get("/ws")]
async fn index(req: HttpRequest, stream: web::Payload) -> Result<HttpResponse, Error> {
    ws::start(MyWs, &req, stream)
}

#[actix_web::main]
async fn main() -> std::io::Result<()> {
    HttpServer::new(|| App::new().service(index))
        .bind(("127.0.0.1", 8080))?
        .run()
        .await
}

Documentation & Community Resources

In addition to this API documentation, several other resources are available:

To get started navigating the API docs, you may consider looking at the following pages first:

  • [ws]: This module provides actor support for WebSockets.

  • HttpContext: This struct provides actor support for streaming HTTP responses.

Dependencies

~14–24MB
~410K SLoC