public abstract class AnalyticsCallback<T>
extends java.lang.Object
AnalyticsCallback is an abstract class which allows you create subclasses that will handle the completion of certain tasks. On success, the handler's return
object is passed into the onComplete method as an argument.| Modifier | Constructor and Description |
|---|---|
protected |
AnalyticsCallback() |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
onComplete(T response)
This is called by the accepting object when a specific method or action completes
|
public abstract void onComplete(T response)
response - The kind of response expected upon completion