BroadcastManager
class BroadcastManager implements Factory mixin Broadcaster (View source)
Properties
protected Container | $app | The application instance. |
|
protected array | $drivers | The array of resolved broadcast drivers. |
|
protected array | $customCreators | The registered custom driver creators. |
Methods
Register the routes for handling broadcast channel authentication and sockets.
Register the routes for handling broadcast user authentication.
Register the routes for handling broadcast authentication and sockets.
Begin sending an anonymous broadcast to the given channels.
Begin sending an anonymous broadcast to the given private channels.
Begin sending an anonymous broadcast to the given presence channels.
Begin broadcasting an event.
Queue the given event for broadcast.
Determine if the broadcastable event must be unique and determine if we can acquire the necessary lock.
Get a driver instance.
Get a driver instance.
Attempt to get the connection from the local cache.
Resolve the given broadcaster.
Call a custom driver creator.
Create an instance of the driver.
Create an instance of the driver.
Get a Pusher instance for the given configuration.
Create an instance of the driver.
Get an Ably instance for the given configuration.
Create an instance of the driver.
Create an instance of the driver.
Create an instance of the driver.
Get the connection configuration.
Get the default driver name.
Set the default driver name.
Disconnect the given disk and remove from local cache.
Get the application instance used by the manager.
Forget all of the resolved driver instances.
Dynamically call the default driver instance.
Details
void
routes(array|null $attributes = null)
Register the routes for handling broadcast channel authentication and sockets.
void
userRoutes(array|null $attributes = null)
Register the routes for handling broadcast user authentication.
void
channelRoutes(array|null $attributes = null)
Register the routes for handling broadcast authentication and sockets.
Alias of "routes" method.
AnonymousEvent
on(Channel|string|array $channels)
Begin sending an anonymous broadcast to the given channels.
AnonymousEvent
private(string $channel)
Begin sending an anonymous broadcast to the given private channels.
AnonymousEvent
presence(string $channel)
Begin sending an anonymous broadcast to the given presence channels.
protected bool
mustBeUniqueAndCannotAcquireLock(mixed $event)
Determine if the broadcastable event must be unique and determine if we can acquire the necessary lock.