dolphindb 3.3.1

A Rust native API for DolphinDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! DolphinDB subscriber client for receiving data from stream tables.
//!
//! # Organization
//! * [`request`] contains server and table info to subscribe.
//! * [`subscriber`] manages subscriptions.
//! * [`message`] contains the table data.

pub mod message;
mod message_parser;
mod reconnect;
pub mod request;
pub mod subscriber;