flare-core 1.0.2

A high-performance, reliable long-connection communication toolkit for Rust, supporting WebSocket and QUIC protocols with features like authentication, device management, serialization negotiation, and protocol racing.
Documentation
1
2
3
4
5
6
7
8
9
//! 服务端设备管理模块
//!
//! 提供设备冲突检测、设备在线管理等功能

pub mod manager;
pub mod strategy;

pub use manager::DeviceManager;
pub use strategy::{DeviceConflictStrategy, DeviceConflictStrategyBuilder};