Listeners/Callbacks
MOVE Models
SDK State Listener
Triggers whenever the MoveSDKState changes.
For android platform it is necessary to start listen explicitly by calling:
if (Platform.OS === 'android') {
MoveSdk.startNativeSdkStateListener();
}
interface StateListener {
fun onStateChanged(sdk: MoveSdk, state: MoveSdkState)
}
Parameter
Latest MoveSDKState.
Auth State Update Listener
Triggers whenever the MoveAuthState changes.
Authentication Expiry
The host app is expected to monitor MoveAuthState updates via authStateUpdateListener
API and handle those changes accordingly.
Check Authentication updates and expiry for more details about authentication expiry and renewal.
interface AuthStateUpdateListener {
fun onAuthStateUpdate(state: MoveAuthState)
}
Parameter
Latest MoveAuthState.
Trip State Listener
Triggers whenever the MoveTripState changes.
interface TripStateListener {
fun onTripStateChanged(sdk: MoveSdk, tripState: MoveTripState)
}
Parameter
Latest MoveTripState.
Trip Start Listener
Triggers whenever a trip actually starts.
interface TripStartListener {
fun onTripStarted(startDate: Date)
}
Parameter
Date
The actual start time of the trip.
Trip Metadata Provider
This triggers whenever a trip is ending, allowing the host app to append metadata along with that trip if needed.
interface TripMetadataProvider {
fun provideMetadata(start: Long, end: Long): Map<String, String>
}
Parameter
Type
start / tripStart
Long / Date
Trip start timestamp / date.
end / tripEnd
Long / Date
Trip end timestamp / date.
Return
A String dictionary of the trip's metadata.
Device Status Callback
Triggers whenever MoveDeviceStatus changes. MoveDeviceStatus represents the current device's system permissions (for Android / iOS) and services status.
typealias MoveDeviceStatusCallback = (_ status: MoveDeviceStatus) -> Void
Parameter
Latest MoveDeviceStatus.
Service Failure Callback
Triggers whenever MoveServiceFailures change.
interface MoveErrorListener {
fun onMoveError(serviceFailures: List<MoveServiceFailure>)
}
Parameter
Service Warning Callback
Triggers whenever MoveServiceWarnings change.
interface MoveWarningListener {
fun onMoveWarning(serviceWarnings: List<MoveServiceWarning>)
}
Initialization Listener
Represents the potential errors occurring when updating the MoveAuth.
interface InitializeListener {
fun onError(error: MoveConfigurationError)
}
Parameter
Type
error
An error to notify when the configuration could
not be loaded from the server.
Log Callback
Triggers whenever a new log event occurs.
interface MoveLogCallback {
fun onLogReceived(eventName: String, value: String?)
}
Parameter
Type
log
String
New log event.
value
String
Log value. Optional
The SDK will trigger log messages to improve debugging.
Remote Config Change Listener
Will be triggered when the MoveConfig was successfully fetched from the server via updateConfig (Android) / update (iOS).
If the MoveConfig object couldn't be fetched from the server then a MoveConfigurationError ServiceUnreachable will be triggered.
interface RemoteConfigChangeListener {
fun onConfigChanged(config: MoveConfig)
}
Setup Authorization Callback
Will return the success or failure of the internal MOVE SDK authentication process during setup. (also see MoveAuthResult)
interface MoveAuthCallback {
fun onResult(result: MoveAuthResult)
}
Device Discovery Listener
Will be triggered during a BDD - Device Discovery scan.
interface DeviceDiscoveryListener {
fun onScanResult(results: List<MoveScanResult)
}
Parameter
results
List of MoveScanResult's
MoveDevice State Listener / Callback
Will be triggered when the status of a registered MoveDevice changes. This MoveDevice must be previously registered. See chapters "Register Device" (Android, iOS)
interface MoveDeviceStateListener {
fun onStateChanged(device: MoveDevice)
}
SDK Health Listener / Callback
Will be triggered when the health score of the MOVE SDK changes. A MoveHealthItem (iOS, React Native) / MoveHealthScore (Android) with the current data is provided.
interface MoveHealthScoreListener {
fun onMoveHealthScoreChanged(score: MoveHealthScore)
}
Last updated