interface ProcessInterface

Methods

void
bind(Server $server)

Create process objects and bind them to the server.

bool
isEnabled(Server $server)

Determine if the process should start.

void
handle()

The logic of the process.

Details

at line 14
void bind(Server $server)

Create process objects and bind them to the server.

Parameters

Server $server

Return Value

void

at line 19
bool isEnabled(Server $server)

Determine if the process should start.

Parameters

Server $server

Return Value

bool

at line 24
void handle()

The logic of the process.

Return Value

void