crabka-broker 0.3.6

Single-node Apache Kafka-compatible broker (MVP)
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Wire handlers for the transaction protocol APIs.
//!
//! Each sub-module implements the `handle` function for one `api_key`. They
//! are registered in `crate::handlers::build_table` (in the top-level
//! handlers module), not here. This module just declares the sub-modules.

pub(crate) mod add_offset_commits_to_txn;
pub(crate) mod add_partitions_to_txn;
pub(crate) mod end_txn;
pub(crate) mod txn_offset_commit;
pub(crate) mod write_txn_markers;