interface Mutex

Methods

bool
create(Event $event)

Attempt to obtain a mutex for the given event.

bool
exists(Event $event)

Determine if a mutex exists for the given event.

void
forget(Event $event)

Clear the mutex for the given event.

Details

at line 13
bool create(Event $event)

Attempt to obtain a mutex for the given event.

Parameters

Event $event

Return Value

bool

at line 21
bool exists(Event $event)

Determine if a mutex exists for the given event.

Parameters

Event $event

Return Value

bool

at line 29
void forget(Event $event)

Clear the mutex for the given event.

Parameters

Event $event

Return Value

void