OnServerStatusChanged
public OnServerStatusChangeNotification OnServerStatusChanged
Parameter
| Value | Type | Description | 
|---|---|---|
| serverStatusType | ServerStatusType | {Online, Offline, Maintenance} | 
Description
This handler is called when the server status was changed in BACKND Console's Server Settings > Project.
You can check the changed status of the project.  
Example
Backend.Notification.OnServerStatusChanged = (ServerStatusType serverStatusType) => {
    Debug.Log(
        $"[OnServerStatusChanged(server status changed)]\n" +
        $"| ServerStatusType : {serverStatusType}\n"
    );
};