Historia - event-driven, made simple
The Rust Programming Language Forum
Historia - event-driven, made simple
Hi all! At a few companies I've worked at, we used an event-driven approach, and every codebase ended up rebuilding the same plumbing: describing events and their metadata, writing publisher/subscriber wrappers, dispatching raw broker messages to typed business logic. So I built historia — a broker-agnostic set of building blocks: describe events once with a derive macro, and get metadata, subscription constants, parsing, and typed handlers generated for you. use historia::Event; use serde::{...
0 comments
No comments yet.