Package com.perfectcorp.perfectlib
Interface CameraKit.CreateCallback
-
- Enclosing class:
- CameraKit
@Keep @KeepPublicClassMembers public static interface CameraKit.CreateCallback
Callback interface used to notify the completion of the operation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonFailure(java.lang.Throwable throwable)Called when the operation fails.voidonSuccess(CameraKit cameraKit)Called when the instance created.
-
-
-
Method Detail
-
onSuccess
void onSuccess(CameraKit cameraKit)
Called when the instance created.
-
onFailure
void onFailure(java.lang.Throwable throwable)
Called when the operation fails.- Parameters:
throwable- the exception is encountered
-
-