broadcast-event
Send real-time events to a specified room in Liveblocks, enabling instant communication and updates for collaborative applications.
Instructions
Broadcast an event to a Liveblocks room
Input Schema
Name | Required | Description | Default |
---|---|---|---|
event | Yes | ||
roomId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"event": {
"additionalProperties": {},
"type": "object"
},
"roomId": {
"type": "string"
}
},
"required": [
"roomId",
"event"
],
"type": "object"
}