The IServerNotificationEvents is an interface that one can implement in order to retrieve various information from server during the rendering process, like 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.
void OnLogMessage(java.lang.String message)
Parameters
message
The log message.
Method called when a progress event is issued by the server.
void OnProgress(float progress)
Parameters
progress
The progress of the current rendering operation. It can have values between "0" and "1".