wait-for-room-response
Monitor a specified room for incoming messages or notifications if the other party leaves. Facilitates real-time communication and collaboration in virtual peer-to-peer rooms.
Instructions
wait for a message to arrive in the room, of be notified if the other party left
Input Schema
Name | Required | Description | Default |
---|---|---|---|
roomId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"roomId": {
"type": "string"
}
},
"required": [
"roomId"
],
"type": "object"
}