public interface System extends Service, SystemTypes
System
interface provides methods Get overall health of the system.SystemTypes.HealthLevel
_VAPI_SERVICE_ID
Modifier and Type | Method and Description |
---|---|
SystemTypes.HealthLevel |
get()
Get overall health of system.
|
void |
get(AsyncCallback<SystemTypes.HealthLevel> asyncCallback)
Get overall health of system.
|
void |
get(AsyncCallback<SystemTypes.HealthLevel> asyncCallback,
InvocationConfig invocationConfig)
Get overall health of system.
|
SystemTypes.HealthLevel |
get(InvocationConfig invocationConfig)
Get overall health of system.
|
java.util.Calendar |
lastcheck()
Get last check timestamp of the health of the system.
|
void |
lastcheck(AsyncCallback<java.util.Calendar> asyncCallback)
Get last check timestamp of the health of the system.
|
void |
lastcheck(AsyncCallback<java.util.Calendar> asyncCallback,
InvocationConfig invocationConfig)
Get last check timestamp of the health of the system.
|
java.util.Calendar |
lastcheck(InvocationConfig invocationConfig)
Get last check timestamp of the health of the system.
|
java.util.Calendar lastcheck()
Synchronous method overload. Result of the invocation will be reported as a method return value.
Error
- Generic errorjava.util.Calendar lastcheck(InvocationConfig invocationConfig)
Synchronous method overload. Result of the invocation will be
reported as a method return value.
Use invocationConfig
to specify configuration for this particular invocation.
invocationConfig
- Configuration for the method invocation.Error
- Generic errorvoid lastcheck(AsyncCallback<java.util.Calendar> asyncCallback)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback
.
Invocation Result:
System health last check timestamp
Operation Errors:
Error
- Generic error
asyncCallback
- Receives the status (progress, result or error) of the operation invocation.void lastcheck(AsyncCallback<java.util.Calendar> asyncCallback, InvocationConfig invocationConfig)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback
.
Use invocationConfig
to specify configuration for this particular invocation.
Invocation Result:
System health last check timestamp
Operation Errors:
Error
- Generic error
asyncCallback
- Receives the status (progress, result or error) of the operation invocation.invocationConfig
- Configuration for the method invocation.SystemTypes.HealthLevel get()
Synchronous method overload. Result of the invocation will be reported as a method return value.
Error
- Generic errorSystemTypes.HealthLevel get(InvocationConfig invocationConfig)
Synchronous method overload. Result of the invocation will be
reported as a method return value.
Use invocationConfig
to specify configuration for this particular invocation.
invocationConfig
- Configuration for the method invocation.Error
- Generic errorvoid get(AsyncCallback<SystemTypes.HealthLevel> asyncCallback)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback
.
Invocation Result:
System health
Operation Errors:
Error
- Generic error
asyncCallback
- Receives the status (progress, result or error) of the operation invocation.void get(AsyncCallback<SystemTypes.HealthLevel> asyncCallback, InvocationConfig invocationConfig)
Asynchronous method overload. Result of the invocation will be
reported via the specified asyncCallback
.
Use invocationConfig
to specify configuration for this particular invocation.
Invocation Result:
System health
Operation Errors:
Error
- Generic error
asyncCallback
- Receives the status (progress, result or error) of the operation invocation.invocationConfig
- Configuration for the method invocation.