mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-01 09:53:33 +00:00
9 lines
174 B
Java
9 lines
174 B
Java
|
|
package com.cappielloantonio.play.interfaces;
|
||
|
|
|
||
|
|
public interface ScanCallback {
|
||
|
|
|
||
|
|
void onError(Exception exception);
|
||
|
|
|
||
|
|
void onSuccess(boolean isScanning, long count);
|
||
|
|
}
|