interface Factory

Methods

connection(UnitEnum|string|null $name = null)

Get a broadcaster implementation by name.

event(mixed $event = null)

Begin broadcasting an event.

void
queue(mixed $event)

Queue the given event for broadcast.

Details

at line 15
Broadcaster connection(UnitEnum|string|null $name = null)

Get a broadcaster implementation by name.

Parameters

UnitEnum|string|null $name

Return Value

Broadcaster

at line 20
PendingBroadcast event(mixed $event = null)

Begin broadcasting an event.

Parameters

mixed $event

Return Value

PendingBroadcast

at line 25
void queue(mixed $event)

Queue the given event for broadcast.

Parameters

mixed $event

Return Value

void