hpx-transport 2.4.1

Exchange SDK toolkit for cryptocurrency trading with authentication, WebSocket, and rate limiting
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Protocol handler implementations for common WebSocket patterns.
//!
//! This module provides ready-to-use handlers for common protocols:
//!
//! - [`GenericJsonHandler`]: Configurable handler for JSON-based protocols
//! - [`JsonRpcHandler`]: JSON-RPC 2.0 compliant handler

mod generic_json;
mod jsonrpc;

pub use generic_json::{GenericJsonConfig, GenericJsonHandler};
pub use jsonrpc::JsonRpcHandler;