Crates.io | next-web-websocket |
lib.rs | next-web-websocket |
version | |
source | src |
created_at | 2025-04-25 14:15:23.78418+00 |
updated_at | 2025-05-04 14:17:42.232811+00 |
description | Next Web Websocket |
homepage | |
repository | |
max_upload_size | |
id | 1649050 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
WebSocket - make everything simpler
//! Test websocket handler
use std::error::Error;
use std::sync::Arc;
use axum::extract::ws::CloseFrame;
use next_web_core::async_trait;
use next_web_dev::Singleton;
use next_web_websocket::core::handler::Result;
use next_web_websocket::core::{handler::WebSocketHandler, session::WebSocketSession};
use next_web_websocket::Message;
/// Test
#[Singleton(binds = [Self::into_websocket_handler])]
#[derive(Clone)]
pub struct TestWebSocket;
impl TestWebSocket {
fn into_websocket_handler(self) -> Arc<dyn WebSocketHandler> {
Arc::new(self)
}
}
#[async_trait]
impl WebSocketHandler for TestWebSocket {
fn paths(&self) -> Vec<&'static str> {
vec!["/test/websocket", "/test/websocket2"]
}
// When the socket connection enters, this method will be entered first
async fn on_open(&self, session: &WebSocketSession) -> Result<()> {
println!(
"Client remote address: {:?}, session id: {:?}",
session.remote_address(),
session.id()
);
Ok(())
}
/// When the client sends a message, it will enter the following method
async fn on_message(&self, _session: &WebSocketSession, message: Message) -> Result<()> {
if let Message::Text(msg) = message {
println!("User message: {:?}", msg);
}
Ok(())
}
/// When an error occurs during the connection process or message transmission, the following methods will be executed
async fn on_error(
&self,
_session: &WebSocketSession,
error: Box<dyn Error + Send + Sync>,
) -> Result<()> {
println!("On error: {:#}", error);
Ok(())
}
/// After handling the error, close the connection and proceed to the following method
async fn on_close(&self, session: &WebSocketSession, _close: Option<CloseFrame>) -> Result<()> {
println!("User left: {:?}", session.id());
Ok(())
}
}
fn main() {
//
}