public static interface DriverContext.DriverStatusListener
Listener for status updates with the capability of getting the cause of an error log.
Nested Class Summary
enum | DriverContext.DriverStatusListener.StatusCode | The status codes of the status update. | |
enum | DriverContext.DriverStatusListener.StatusLevel | The severity levels of the status update. |
Public Method Summary
abstract void |
updateStatus(DriverContext.DriverStatusListener.StatusLevel
statusLevel,
DriverContext.DriverStatusListener.StatusCode statusCode, String statusMsg,
Throwable cause)
Called when there are status updates.
|
Public Methods
public abstract void updateStatus (DriverContext.DriverStatusListener.StatusLevel statusLevel, DriverContext.DriverStatusListener.StatusCode statusCode, String statusMsg, Throwable cause)
Called when there are status updates.
Parameters
statusLevel | The severity of the status message. |
---|---|
statusCode | The status code. |
statusMsg | A description of the status. |
cause | Throwable
object which represents the cause of the status update. |