1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 15:51:06 +01:00
actix-extras/actix-ws
2024-06-20 01:55:14 +01:00
..
examples docs: clean up ws examples 2024-06-20 01:55:14 +01:00
src docs: clean up ws examples 2024-06-20 01:55:14 +01:00
Cargo.toml docs: clean up ws examples 2024-06-20 01:55:14 +01:00
CHANGELOG.md actix-ws: take the encoded buffer when yielding rather than split it (#435) 2024-06-09 05:06:24 +00:00
LICENSE-APACHE adopt actix-ws crate (#361) 2023-11-03 22:49:18 +00:00
LICENSE-MIT adopt actix-ws crate (#361) 2023-11-03 22:49:18 +00:00
README.md docs: clean up ws examples 2024-06-20 01:55:14 +01:00

Actix WS (Next Gen)

WebSockets for Actix Web, without actors.

crates.io Documentation Apache 2.0 or MIT licensed Dependency Status

Documentation & Resources

Usage

use actix_web::{middleware::Logger, web, App, HttpRequest, HttpServer, Responder};
use actix_ws::Message;

async fn ws(req: HttpRequest, body: web::Payload) -> actix_web::Result<impl Responder> {
    let (response, mut session, mut msg_stream) = actix_ws::handle(&req, body)?;

    actix_web::rt::spawn(async move {
        while let Some(Ok(msg)) = msg_stream.next().await {
            match msg {
                Message::Ping(bytes) => {
                    if session.pong(&bytes).await.is_err() {
                        return;
                    }
                }
                Message::Text(msg) => println!("Got text: {msg}"),
                _ => break,
            }
        }

        let _ = session.close(None).await;
    });

    Ok(response)
}

#[actix_web::main]
async fn main() -> std::io::Result<()> {
    HttpServer::new(move || {
        App::new()
            .wrap(Logger::default())
            .route("/ws", web::get().to(ws))
    })
    .bind("127.0.0.1:8080")?
    .run()
    .await?;

    Ok(())
}

License

This project is licensed under either of

at your option.