IApplicationExtension

Interface for Application extensions.

Members

Aliases

IApplication
alias IApplication = .IApplication

Alias of IApplication, for use by implementing classes without needing to import ocean.util.app.model.IApplication.

Functions

atExit
void atExit(IApplication app, istring[] args, int status, ExitException exception)

Function executed at program exit.

onExitException
ExitException onExitException(IApplication app, istring[] args, ExitException exception)

Function executed if (and only if) an ExitException was thrown.

postRun
void postRun(IApplication app, istring[] args, int status)

Function executed after the program runs.

preRun
void preRun(IApplication app, istring[] args)

Function executed before the program runs.

Inherited Members

From IExtension

order
int order()

Returns a number to provide ordering to extensions.

Meta