Expand description
WebSocket Transport Implementation
This module provides a transport implementation that uses WebSocket protocol for communication. This transport is ideal for:
- Network-based client-server communication
- Real-time bidirectional messaging
- Web-based applications
- Scenarios requiring secure communication (WSS)
The implementation uses tokio-tungstenite for WebSocket functionality and provides thread-safe connection management through Arc and Mutex.
Structsยง
- WebSocket
Transport - A transport implementation that uses WebSocket protocol for communication.