Interface OnFileError
public interface OnFileError
Callback type for file error events.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onFileError
(FileReference fileRef, ErrorCode error) Triggered when a file error happens.
-
Method Details
-
onFileError
Triggered when a file error happens.
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
- aFileReference
for which the problem happenederror
- error code describing a problem
-