kcl 0.3.3

a Rust interface to the Amazon Kinesis Client Library (KCL) MultiLangDaemon
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]
pub mod checkpointer;

pub(crate) mod messages;
pub(crate) mod processor;
pub mod reader;
pub(crate) mod responses;
mod runner;
pub mod writer;

pub use messages::Record;
pub use processor::Processor;
pub use runner::{run, tick};