Inbox Processor / Handler
It is like the Queue Worker, you need to create the handler classes and register for the particular topic.
Simply bind your own Handler class using addProcessor
method from our helper. You can add multiple processors, Inbox Process will loop through all of them and execute.
The Inbox Process will either use the handle
method or __invoke
.
Your processor class will be resolved using the super cool dependency injection powered by Laravel.
Last updated