Package com.creditcall.chipdnamobile
Interface ITmsUpdateListener
-
public interface ITmsUpdateListenerThis interface is used to listen when an update from the TMS server is being performed. Register listener before callingChipDnaMobile.requestTmsUpdate(Parameters)- Author:
- Creditcall Ltd
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonTmsUpdate(Parameters tmsUpdateParameters)Invoked when the update has finished successfully.
-
-
-
Method Detail
-
onTmsUpdate
void onTmsUpdate(Parameters tmsUpdateParameters)
Invoked when the update has finished successfully.- Parameters:
tmsUpdateParameters-Parameterscollection which can contain:ParameterKeys.Resultindicating if the Tms Update was successful.ParameterKeys.Errorscontains any errors encountered.ParameterKeys.TmsUpdateUtcThe date and time of the Tms Update.ParameterKeys.DateTimeFormatThe format of date and time inParameterKeys.TmsUpdateUtc.ParameterKeys.FirmwareUpdateAvailabledefining if a firmware update is available using the valuesParameterValues.TRUEandParameterValues.FALSE.ParameterKeys.FirmwareUpdateStatusreturned with a serializedFirmwareUpdateStatusobject.FirmwareUpdateStatuscan be deserialized usingChipDnaMobileSerializer.deserializeFirmwareUpdateStatus(java.lang.String).
-
-