Releases: kundu/laravel-funcqueue
Releases · kundu/laravel-funcqueue
Initial Release of LaravelFuncQueue package
As this is the first release of the Laravel FuncQueue package, it includes the initial implementation of the package with the following features:
- Dispatch any function as a job in Laravel queues using a simple and intuitive interface.
- The LaravelFuncQueue class provides a
run
method that takes the class name, method name, and an array of parameters as arguments and dispatches the function as a job. - It provides a
withConstructor
method to pass constructor parameters to the specified class. - It allows users to specify a queue name using the
onQueue
method. - It handles exceptions and logs them to the application's logs for better debugging.
This package can help developers to improve their application performance by running time-consuming functions in the background and allowing the application to continue processing other requests without waiting for the function to complete.