Asynchronous Message Bus (Gateways)
Asynchronous Gateways
#[Asynchronous("async")]
interface AsynchronousCommandBus extends CommandBus
{
}#[CommandHandler]
public function placeOrder(PlaceOrderCommand $command) : void
{
// do something with $command
}Outbox Event Bus
Last updated
Was this helpful?