Callbacks

This section contains the necessary methods to implement BiometridFullCallback

Called by initialize method. Use this to observe if SDK was correctly initialized:

func initializeCallback(status: Bool, error: Errors?) -> ()

Called by internal method. Use this to observe if was correctly created a process:

func processCreatedCallback(processId: String?) -> ()

Called by internal method. Use this to observe if a process is finished:

func processFinishedCallback() -> ()

Use this to observe when the SDK start

func interfaceStartedCallback() -> ()

Use this to observe if SDK is closed

func interfaceClosedCallback() -> ()

Was this helpful?