Interface IStatusHandler
-
- All Known Implementing Classes:
DefaultStatusHandler
public interface IStatusHandler
Interface that defines several status handler callback functions. A status handler allows the application developer to use function showStatus in JavaScript, passing in a string argument. The actual implementation of the showStatus function is provided by the application developer.If a status handler is defined, engine may use it to write status information.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
finish()
does cleanup workvoid
initialize()
initialize the status handler.void
showStatus(java.lang.String s)
showa the status string
-