kiteticker-async-manager 0.4.0

High-performance async WebSocket client for Kite Connect API with multi-connection support, dynamic subscription management, and optimized data processing.
Documentation
mod depth;
mod exchange;
mod mode;
mod ohlc;
mod order;
mod request;
mod text_message;
mod tick;
mod tick_message;
pub(crate) mod tick_raw;
mod ticker_message;
pub use self::depth::{Depth, DepthItem};
pub use self::exchange::Exchange;
pub use self::mode::Mode;
pub use self::ohlc::OHLC;
pub use self::order::{
  Order, OrderStatus, OrderTransactionType, OrderValidity,
};
pub use self::request::Request;
pub use self::text_message::TextMessage;
pub use self::tick::Tick;
// Keep raw types crate-visible; crate root will re-export for external users
// Keep internal uses explicit; public re-exports are done at crate root
pub use self::tick_message::TickMessage;
pub use self::ticker_message::TickerMessage;