asynq 0.1.8

Simple, reliable & efficient distributed task queue in Rust, inspired by hibiken/asynq
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! WebSocket broker module
//!
//! Provides a WebSocket-based broker that connects to an asynq-server.
//! This enables cross-process communication without requiring Redis or PostgresSQL.

mod broker;
pub mod inspector;
pub mod message;
pub mod ws_broker;

pub use inspector::WebSocketInspector;
pub use ws_broker::WebSocketBroker;