Crate emitix

Source
Expand description

emitix - A thread-safe event management library

This module provides thread-safe event management through the EventManager struct. EventManager allows adding event listeners and emitting events to all registered listeners.

It is designed for use in multithreaded environments while ensuring thread safety using Arc and Mutex.

Structsยง

EventManager
EventManager is a thread-safe structure for managing events.