interface MasterSupervisorRepository

Methods

array
names()

Get the names of all the master supervisors currently running.

array
all()

Get information on all of the master supervisors.

stdClass|null
find(string $name)

Get information on a master supervisor by name.

array
get(array $names)

Get information on the given master supervisors.

void
update(MasterSupervisor $master)

Update the information about the given master supervisor.

void
forget(string $name)

Remove the master supervisor information from storage.

void
flushExpired()

Remove expired master supervisors from storage.

Details

at line 15
array names()

Get the names of all the master supervisors currently running.

Return Value

array

at line 20
array all()

Get information on all of the master supervisors.

Return Value

array

at line 25
stdClass|null find(string $name)

Get information on a master supervisor by name.

Parameters

string $name

Return Value

stdClass|null

at line 30
array get(array $names)

Get information on the given master supervisors.

Parameters

array $names

Return Value

array

at line 35
void update(MasterSupervisor $master)

Update the information about the given master supervisor.

Parameters

MasterSupervisor $master

Return Value

void

at line 40
void forget(string $name)

Remove the master supervisor information from storage.

Parameters

string $name

Return Value

void

at line 45
void flushExpired()

Remove expired master supervisors from storage.

Return Value

void