Package 

Interface FileCallback


  • 
    public interface FileCallback
    
                        

    Receives callbacks about a file saving operation.

    • Method Summary

      Modifier and Type Method Description
      abstract void onFileReady(@Nullable() File file) Notifies that the data was succesfully written to file.This is run on the UI thread.Returns a null object if an exception was encountered, for exampleif you don't have permissions to write to file.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • onFileReady

        @UiThread() abstract void onFileReady(@Nullable() File file)

        Notifies that the data was succesfully written to file.This is run on the UI thread.Returns a null object if an exception was encountered, for exampleif you don't have permissions to write to file.

        Parameters:
        file - the written file, or null