Back to project page Android-SDK.
The source code is released under:
MIT License
If you think the Android project Android-SDK listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.getcloudengine; /*from w w w . j a va 2 s. com*/ import java.util.List; /** * Callback function for CloudObject query operations. */ public abstract class FindObjectsCallback { /** * Called upon the completion of the fetch request. * * @param result list of CloudObjects matching the given query * * @param e Any exception that might have occurred during the request. * null if the request was successful. */ public abstract void done(List<CloudObject> result, CloudException e); }