Package com.incode.welcome_sdk.listeners
Interface EventListener
-
- All Implemented Interfaces:
-
com.incode.welcome_sdk.listeners.BaseListener
,com.incode.welcome_sdk.listeners.ErrorListener
,com.incode.welcome_sdk.listeners.UserCancelledListener
public interface EventListener implements BaseListener
-
-
Method Summary
Modifier and Type Method Description abstract Unit
onEvent(Event event, HashMap<String, Object> eventData)
Called when event is being sent to the server abstract Unit
onEvent(InterviewEventResult eventResult)
-
Methods inherited from class com.incode.welcome_sdk.listeners.ErrorListener
onError
-
Methods inherited from class com.incode.welcome_sdk.listeners.UserCancelledListener
onUserCancelled
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
onEvent
@Deprecated(message = "Use onEvent(event: InterviewEventResult)") abstract Unit onEvent(Event event, HashMap<String, Object> eventData)
Called when event is being sent to the server
- Parameters:
event
-event
eventData
-additional parameters sent within event
-
onEvent
abstract Unit onEvent(InterviewEventResult eventResult)
-
-
-
-