Skip to content
CamsCue

Reference

Exclusive Show

An exclusive show is a private streaming session reserved entirely for a single paying member, preventing any other user from watching, chatting, or accessing the broadcast.

Edge Cases and Failure State Protocols

Session integrity relies on strict state management between the media server, billing engine, and permission database. System anomalies are managed through predetermined technical routines:

  • Mid-Session Connection Drops: If a viewer or broadcaster disconnects abruptly, billing timers pause automatically for a grace interval, typically thirty to sixty seconds, before terminating the session room if the link is not restored.
  • Simultaneous Booking Conflicts: When multiple users request an exclusive session concurrently, concurrency controls grant access to the transaction processed first while rejecting or queuing adjacent attempts.
  • Insufficient Token Balances: Streaming platforms monitor credit balances in real time; if an account cannot cover the minimum threshold for the next billing cycle, the system signals the participant before closing the stream.
  • Permissions Leakage: Media servers invalidate public WebSocket and WebRTC tokens upon transition, redirecting unauthenticated users to a waiting lobby or placeholder display.

Architecture and Operational Mechanics

Entering an exclusive show transitions a room from a public one-to-many WebRTC or HLS broadcast to a restricted one-to-one architecture. During this transition, public chat history and public video feeds are detached from unauthenticated clients. The platform allocates a dedicated audio and video channel between the broadcaster and the client, often granting two-way communication tools, such as client video back-channeling or priority text feeds.

Billing mechanics generally enforce a per-minute rate, deducting funds continuously from a member digital balance. Unlike standard private sessions (which on some platforms permit third-party viewers to observe as non-participating guests or pay a fee to join), an exclusive show strictly enforces total isolation, ensuring zero peripheral audience access.

Related terms

Back to glossary