Interface TrackerWebserviceListener
-
public interface TrackerWebserviceListenerListener for the tracker webservice
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonFailure(FailReason reason, java.util.List<Event> events)Called when a request failvoidonFinish()Called when the webservice finish, on failure or on successvoidonSuccess(java.util.List<Event> events)Called when a request succeed
-
-
-
Method Detail
-
onSuccess
void onSuccess(java.util.List<Event> events)
Called when a request succeed- Parameters:
events- event successfully sent
-
onFailure
void onFailure(FailReason reason, java.util.List<Event> events)
Called when a request fail- Parameters:
reason- reason of the failureevents- event not sent
-
onFinish
void onFinish()
Called when the webservice finish, on failure or on success
-
-