Skip to main content

Documentation Index

Fetch the complete documentation index at: https://abxbus.archivebox.io/llms.txt

Use this file to discover all available pages before exploring further.

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 abxbus import EventBus
from abxbus.bridges import RedisEventBridge

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

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

Bridge pages