Skip to content

Overview

This page will cover the modules, what they do - it won't cover how they are used, as they are internal, if you need to override them, look at the docs.

Application

The application module is the main module that is used to bootstrap the application, by default this class will pull all the required libraries and modules into the application, and then kickstart the application and handle the lifecycle until the application is closed.

Source code

Autowire

The autowire module is used to automatically load your files into the application and handle importing. It will also handle the loading of the files and the order in which they are loaded and deals with instantiating as necessary.

Source code

Events

The events module is used to handle events and event listeners and dispatching hooks, it also handles the hooks that are dispatched.

Source code

Runner

The runner module is used to handle the cron-tasks, it will handle the dispatching of the tasks and the running of the tasks.

Source code

Services

The services module simply handles the lifecycle of services and ensuring their lifecycle events are fired without error.

Source code

Thread

The thread module is actually the wrapper that wraps user-provided threads and handles their IPC and lifecycle.

Source code

Threads

The threads module is used to handle the creation, IPC and general management of threads.

Source code

Worker

The worker module is actually the wrapper that wraps user-provided workers and handles their IPC and lifecycle.

Source code

Released under the Apache-2.0 License.