Skip to main content
Bridges are optional connectors for forwarding serialized events between buses in different processes or machines. All bridges expose the same minimal surface:
  • emit(...) for outbound forwarding
  • on(...) for inbound subscription
  • start() and close() for lifecycle control

Quick setup

from bubus import EventBus, RedisEventBridge

bus = EventBus('AppBus')
bridge = RedisEventBridge('redis://localhost:6379/0/bubus_events')

bus.on('*', bridge.emit)
bridge.on('*', bus.emit)

Bridge pages