Skip to main content

Enumeration: ApplicationEvent

Defined in: src/types/jova/Events.ts:8

Enumeration Members

Enumeration MemberValueDescriptionDefined in
ALL"any"Name All (any) Description Catch all events. Listener Handler Params: event: ApplicationEvent, ...args: any[] stringsrc/types/jova/Events.ts:38
ERROR"error"Name Error Description If an error occurs in the Jova Server. Listener Handler Params: `error: Errorunknown` string
MOUNT"mount"Name Mount Description The mount event is fired on a sub-app, when it is mounted on a parent application. The parent app is passed to the callback function. Listener Handler Params: application: JovaServer stringsrc/types/jova/Events.ts:58
READY"ready"Name Ready Description When the Jova Server has successfully started. Listener Handler Params: none stringsrc/types/jova/Events.ts:18
ROUTE"route"Name Route Description When a route runs its handler function. Listener Handler Params: request: ApplicationRequest stringsrc/types/jova/Events.ts:28