The IServerNotificationEvents is an interface that one can implement in order to retrieve various information from server during the rendering process, such as log and progress.
Methods
Name |
Description |
Method called when a log message is issued by the server. |
|
Method called when a progress event is issued by the server. |
Method called when a log message is issued by the server.
public void OnLogMessage(String message);
Parameters
message
The message sent by the server.
This has the following structure: "Type:Message", where Type can be:
- Information: information message.
- Warning: warning message.
- Error: error message.
- Diagnostic: diagnostic trace message.
Method called when a progress event is issued by the server.
public void OnProgress(float progress)
Parameters
progress
The progress of the current rendering operation. It can have values between "0" and "1".