public static interface LockPatternChecker.OnCheckCallback
Modifier and Type | Method and Description |
---|---|
void |
onChecked(boolean matched,
int throttleTimeoutMs)
Invoked when a security check is finished.
|
default void |
onEarlyMatched()
Invoked as soon as possible we know that the credentials match.
|
default void onEarlyMatched()
onChecked(boolean, int)
but only if the credentials match.void onChecked(boolean matched, int throttleTimeoutMs)
matched
- Whether the PIN/Password/Pattern matches the stored one.throttleTimeoutMs
- The amount of time in ms to wait before reattempting
the call. Only non-0 if matched is false.