ConsoleEvents
in package
FinalYes
Contains all events dispatched by an Application.
Tags
Table of Contents
Constants
- COMMAND = 'console.command'
- The COMMAND event allows you to attach listeners before any command is executed by the console. It also allows you to modify the command, input and output before they are handed to the command.
- ERROR = 'console.error'
- The ERROR event occurs when an uncaught exception or error appears.
- TERMINATE = 'console.terminate'
- The TERMINATE event allows you to attach listeners after a command is executed by the console.
Constants
COMMAND
The COMMAND event allows you to attach listeners before any command is executed by the console. It also allows you to modify the command, input and output before they are handed to the command.
public
mixed
COMMAND
= 'console.command'
Tags
ERROR
The ERROR event occurs when an uncaught exception or error appears.
public
mixed
ERROR
= 'console.error'
This event allows you to deal with the exception/error or to modify the thrown exception.
Tags
TERMINATE
The TERMINATE event allows you to attach listeners after a command is executed by the console.
public
mixed
TERMINATE
= 'console.terminate'