data-streaming-service 0.2.7

The data streaming service that sends data notifications to clients
Documentation
// Copyright (c) Aptos
// SPDX-License-Identifier: Apache-2.0

#![forbid(unsafe_code)]

pub mod data_notification;
pub mod data_stream;
pub mod error;
mod logging;
mod metrics;
mod stream_engine;
pub mod streaming_client;
pub mod streaming_service;

#[cfg(test)]
mod tests;