类 FunctionCallback<T>


  • public abstract class FunctionCallback<T>
    extends LCCallback<T>
    • 构造器详细资料

      • FunctionCallback

        public FunctionCallback()
    • 方法详细资料

      • done

        public abstract void done​(T object,
                                  LCException e)
        Override this function with the code you want to run after the cloud function is complete.
        参数:
        object - The object that was returned by the cloud function.
        e - The exception raised by the cloud call, or null if it succeeded.