Package com.oracle.content.sdk
Interface ContentCallback<C extends AssetObject>
public interface ContentCallback<C extends AssetObject>
Callback interface to be implemented by the app to handle the callback when an SDK operation completes.
For use in the method
ContentRequest.fetchAsync(ContentCallback)-
Method Summary
Modifier and TypeMethodDescriptionvoidonResponse(ContentResponse<C> response) Implement to handle the response to the SDK call.
-
Method Details
-
onResponse
Implement to handle the response to the SDK call. SeeContentResponsefor more detail.- Parameters:
response- - TheContentResponseobject containing results of call
-