public abstract class AnalyticsCallback<T> extends 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 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 completionCopyright © 2010 Amazon Web Services, Inc. All Rights Reserved.