All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avos.avoscloud.StatusListCallback Maven / Gradle / Ivy

The newest version!
package com.avos.avoscloud;

import java.util.List;

/**
 * Created with IntelliJ IDEA. User: zhuzeng Date: 1/3/14 Time: 4:25 PM To change this template use
 * File | Settings | File Templates.
 */
public abstract class StatusListCallback extends AVCallback> {
  /**
   * Override this function with the code you want to run after the fetch is complete.
   * 
   * @param statusObjects The objects matching the query, or null if it failed.
   * @param parseException The exception raised by the find, or null if it succeeded.
   */
  public abstract void done(List statusObjects, AVException parseException);

  @Override
  protected final void internalDone0(List returnValue, AVException e) {
    done(returnValue, e);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy