BaseRemoteEvent
Abstract base class inherited by RemoteEvent and UnreliableRemoteEvent for asynchronous, one-way communication across the client-server boundary.
| Memory category | Instances |
|---|
Member index 0
Description
Abstract base class inherited by RemoteEvent and UnreliableRemoteEvent. It defines shared behavior for asynchronous, one-way communication across the client-server boundary without yielding for a response — from a client to the server, from the server to a specific client, or from the server to all clients.
This class isn't creatable. Use RemoteEvent for reliable, ordered
delivery, or UnreliableRemoteEvent when reduced latency and network
traffic matter more than guaranteed delivery. Fire and receive APIs
(FireServer, FireClient, FireAllClients, OnServerEvent,
OnClientEvent) are defined on those subclasses. If you need a return value,
use a RemoteFunction instead.
History 1
- 601 Add BaseRemoteEvent