Function type that starts the outbox consumer and returns a stop function.
Promise that resolves to a Stop function
const stopOutbox = await outbox.start()// Later, to stop gracefully:await stopOutbox() Copy
const stopOutbox = await outbox.start()// Later, to stop gracefully:await stopOutbox()
Function type that starts the outbox consumer and returns a stop function.