```rust
struct MyHandler;
impl EngineIoHandler for MyHandler { type Data = ();
fn on_connect(&self, socket: &Socket<Self>) {
println!("socket connect {}", socket.sid);
}
fn on_disconnect(&self, socket: &Socket<Self>) {
println!("socket disconnect {}", socket.sid);
}
fn on_message(&self, msg: String, socket: &Socket<Self>) {
println!("Ping pong message {:?}", msg);
socket.emit(msg).ok();
}
fn on_binary(&self, data: Vec<u8>, socket: &Socket<Self>) {
println!("Ping pong binary message {:?}", data);
socket.emit_binary(data).ok();
}
}
async fn main() -> Result<(), Box
info!("Starting server");
let app = axum::Router::new()
.route("/", get(|| async { "Hello, World!" }))
.layer(EngineIoLayer::new(MyHandler));
Server::bind(&"0.0.0.0:3000".parse().unwrap())
.serve(app.into_make_service())
.await?;
Ok(())
} ```
You can enable support for other EngineIO protocol implementations through feature flags. The latest supported protocol version is enabled by default.
To add support for another protocol version, adjust your dependency configuration accordingly:
```toml [dependencies]
v3
protocol (v4
is also implicitly enabled, as it's the default).engineioxide = { version = "0.3.0", features = ["v3"] } ```
To enable a single protocol version only, disable default features:
```toml [dependencies]
v3
protocol only.engineioxide = { version = "0.3.0", features = ["v3"], default-features = false } ```