-
public interface FileCallbackReceives callbacks about a file saving operation.
-
-
Method Summary
Modifier and Type Method Description abstract voidonFileReady(@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. -
-
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
-
-
-
-