Represents the current server branch.
Resource name of the executing entity.
Represents the current server SDK version.
Represents the current server version.
Clears a timer set with the everyTick function.
The id of a timer.
Clears a timer set with the setInterval function.
The id of a timer.
Clears a timer set with the nextTick function.
The id of a timer.
Clears a timer set with the setTimeout function.
The id of a timer.
Removes the specified key.
The key of the value to remove.
Removes the specified key.
The key of the value to remove.
Emits specified event across server resources.
Name of the event.
Rest parameters for emit to send.
Emits specified event to specific client.
Event is sent to specific player.
Name of the event.
Rest parameters for emit to send.
Emits specified event to specific client.
Event is sent to every player.
Name of the event.
Rest parameters for emit to send.
Schedules execution of handler on every tick.
Handler that should be scheduled for execution.
A number representing the id value of the timer that is set. Use this value with the clearEveryTick function to cancel the timer.
Gets a value using the specified key.
The key of the value to get.
Dynamic value associated with the specified key.
Gets a value using the specified key.
The key of the value to get.
Dynamic value associated with the specified key.
Determines whether contains the specified key.
The key of the value to locate.
True when element associated with the specified key is stored.
Determines whether contains the specified key.
The key of the value to locate.
Return is dependent on whether element associated with the specified key is stored.
Creates a hash using Jenkins one-at-a-time algorithm.
A string, from which hash will be created.
Schedules execution of handler on next tick.
Handler that should be scheduled for execution.
A number representing the id value of the timer that is set. Use this value with the clearNextTick function to cancel the timer.
Unsubscribes from server event handler with specified listener.
Name of the event.
Listener that should be removed.
Unsubscribes from client event handler with specified listener.
Name of the event.
Listener that should be removed.
Subscribes to server event handler with specified listener.
Name of the event.
Listener that should be added.
Subscribes to server event handler with specified listener.
Listener that should be added.
Schedules execution of handler in specified intervals.
Handler that should be scheduled for execution.
The time, in milliseconds, between execution of specified handler.
A number representing the id value of the timer that is set. Use this value with the clearInterval function to cancel the timer.
Stores the given value with the specified key.
The key of the value to store.
Stores the given value with the specified key.
The key of the value to store.
Schedules execution of handler once after the expiration of interval.
Handler that should be scheduled for execution.
The time, in milliseconds, before execution of specified handler.
A number representing the id value of the timer that is set. Use this value with the clearTimeout function to cancel the timer.
This variable was renamed to defaultDimension on the other branches than release.