bevy_event_bus 1.1.0

A Bevy plugin that connects Bevy's event system to external message brokers like Kafka
Documentation
pub mod backend_resource;
pub mod event_bus_backend;

#[cfg(feature = "kafka")]
pub mod kafka_backend;
#[cfg(feature = "redis")]
pub mod redis_backend;

pub use backend_resource::EventBusBackendResource;
pub use event_bus_backend::EventBusBackend;

#[cfg(feature = "kafka")]
pub use kafka_backend::{
    KafkaCommitOutcome, KafkaCommitRequest, KafkaCommitResult, KafkaCommitResultMessage,
    KafkaCommitResultStats, KafkaEventBusBackend, KafkaLagCache,
};

#[cfg(feature = "redis")]
pub use redis_backend::{RedisAckWorkerStats, RedisEventBusBackend};

// Producer flush helper removed; frame-level system now guarantees delivery.