void |
FaultCodes.createAlarm(FaultCodes.Bus bus,
FaultCodes.MessageType type,
String ecu,
int seconds,
WvaCallback<Void> cb)
|
void |
WVA.createFaultCodeAlarm(FaultCodes.Bus bus,
FaultCodes.MessageType type,
String ecu,
int seconds,
WvaCallback<Void> callback)
Create an alarm for fault code data from the given ECU on the WVA.
|
void |
FaultCodes.deleteAlarm(FaultCodes.Bus bus,
FaultCodes.MessageType type,
String ecu,
WvaCallback<Void> cb)
|
void |
WVA.deleteFaultCodeAlarm(FaultCodes.Bus bus,
FaultCodes.MessageType type,
String ecu,
WvaCallback<Void> callback)
Removes the alarm on the given fault code data on the WVA, by deleting
the alarm record on the device.
|
void |
FaultCodes.fetchEcuNames(FaultCodes.Bus bus,
WvaCallback<Set<String>> callback)
|
void |
WVA.fetchFaultCode(FaultCodes.Bus bus,
FaultCodes.MessageType type,
String ecu,
WvaCallback<FaultCodeResponse> callback)
Asynchronously queries the WVA for the most recent DTC report of the given type
(active or inactive) on the given CAN bus.
|
void |
FaultCodes.fetchFaultCode(FaultCodes.Bus bus,
FaultCodes.MessageType type,
String ecu,
WvaCallback<FaultCodeResponse> cb)
|
void |
WVA.fetchFaultCodeEcuNames(FaultCodes.Bus bus,
WvaCallback<Set<String>> callback)
Asynchronously queries the WVA for the list of ECUs that the system knows exist
on the given CAN bus, since they might be providing active or inactive DTC messages.
|
FaultCodeResponse |
WVA.getCachedFaultCode(FaultCodes.Bus bus,
FaultCodes.MessageType type,
String ecu)
Synchronously returns the last fault code received by this library for a
given ECU.
|
FaultCodeResponse |
FaultCodes.getCachedFaultCode(FaultCodes.Bus bus,
FaultCodes.MessageType type,
String ecu)
|
void |
WVA.removeFaultCodeListener(FaultCodes.Bus bus,
FaultCodes.MessageType type,
String ecu)
Removes any FaultCodeListener that has been set to be
invoked on new fault code data matching the given bus, type and ECU.
|
void |
FaultCodes.removeFaultCodeListener(FaultCodes.Bus bus,
FaultCodes.MessageType type,
String ecu)
|
void |
WVA.setFaultCodeListener(FaultCodes.Bus bus,
FaultCodes.MessageType type,
String ecu,
FaultCodeListener listener)
Sets the FaultCodeListener to be invoked when a new fault code event, matching the
given bus, type and ECU, arrives via the event channel.
|
void |
FaultCodes.setFaultCodeListener(FaultCodes.Bus bus,
FaultCodes.MessageType type,
String ecu,
FaultCodeListener listener)
|
void |
FaultCodes.subscribe(FaultCodes.Bus bus,
FaultCodes.MessageType type,
String ecu,
int seconds,
WvaCallback<Void> cb)
|
void |
WVA.subscribeToFaultCodes(FaultCodes.Bus bus,
FaultCodes.MessageType type,
String ecu,
int interval,
WvaCallback<Void> callback)
Subscribe to fault code information from the specified ECU on the WVA.
|
void |
FaultCodes.unsubscribe(FaultCodes.Bus bus,
FaultCodes.MessageType type,
String ecu,
WvaCallback<Void> cb)
|
void |
WVA.unsubscribeFromFaultCodes(FaultCodes.Bus bus,
FaultCodes.MessageType type,
String ecu,
WvaCallback<Void> callback)
Unsubscribes from the specified fault code information on the WVA, by deleting the
subscription record on the device.
|