Initial version.

Signed-off-by: Leo Galambos <lg@hq.egothor.org>
This commit is contained in:
2025-07-03 22:30:33 +02:00
parent a194dab5e4
commit 54b21586c7
19 changed files with 2754 additions and 8 deletions

View File

@@ -1,3 +1,12 @@
# conflux
# Conflux
A lightweight Java library providing a thread-safe shared processing context combined with an event bus for distributing updates, enabling clean, decoupled communication between independent components.
**Conflux** is a Java library that provides a shared processing context
combined with an event bus, allowing independent components to share named
values and react to their changes in a clean and decoupled way.
## Key Features
- Shared context for storing and retrieving named values
- Publish/subscribe event bus for listening to value changes
- Simple API for easy integration into existing projects
- Enables modular design by decoupling components through events