项目作者: njasm

项目描述 :
Highly opinionated way to build asynchronous Websocket servers with Rust
高级语言: Rust
项目地址: git://github.com/njasm/blunt.git
创建时间: 2021-04-25T15:23:23Z
项目社区:https://github.com/njasm/blunt

开源协议:Other

下载


Blunt
=

github
crates.io
docs.rs
build status

Highly opinionated way to build asynchronous Websocket servers with Rust

How

The world famous example, echo server

  1. #[tokio::main]
  2. async fn main() -> Result<()> {
  3. ::blunt::builder()
  4. .for_path_with_ctor("/echo", |ctx| EchoServer { ctx })
  5. .build()
  6. .bind("127.0.0.1:3000".parse().expect("Invalid Socket Addr"))
  7. .await?;
  8. Ok(())
  9. // now connect your clients to http://127.0.0.1:3000/echo and say something!
  10. }
  11. #[derive(Debug, Default)]
  12. pub struct EchoServer {
  13. ctx: AppContext,
  14. }
  15. #[blunt::async_trait]
  16. impl WebSocketHandler for EchoServer {
  17. async fn on_open(&mut self, session_id: Uuid) {
  18. self.ctx
  19. .session(session_id)
  20. .await
  21. .and_then(|s| {
  22. s.send(WebSocketMessage::Text(String::from(
  23. "Welcome to Echo server!",
  24. ))).ok()
  25. });
  26. }
  27. async fn on_message(&mut self, session_id: Uuid, msg: WebSocketMessage) {
  28. self.ctx
  29. .session(session_id)
  30. .await
  31. .and_then(|s| s.send(msg).ok());
  32. }
  33. async fn on_close(&mut self, session_id: Uuid, _msg: WebSocketMessage) {
  34. info!("connection closed for session id {}", session_id);
  35. }
  36. }

For more code examples please see the examples folder.

License

Tri-Licensed under either of Apache License, Version
2.0
, MIT license or MPL-2.0 license at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in this crate by you, as defined in the Apache-2.0 license, shall
be tri-licensed as above, without any additional terms or conditions.