Interface OnFileCompletion
public interface OnFileCompletion
Callback type for successful import/download of one of the files from an import list.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onFileCompletion
(FileReference fileRef) Triggered when import of one of the files from import list is completed.
-
Method Details
-
onFileCompletion
Triggered when import of one of the files from import list is completed.
Note: you should NOT try to call `Camera.disconnect()` directly from this callback. If you intend to close the camera connection you should do that in a separate thread.- Parameters:
fileRef
- describes imported file as aFileReference
.
-