tangem-app-android-audited/card-common/src/main/java/com/tangem/tangemcommon/reader/NfcReader.java
2019-02-27 21:45:00 +03:00

20 lines
No EOL
361 B
Java

package com.tangem.tangemcommon.reader;
import java.io.IOException;
public interface NfcReader {
byte[] getId();
void setTimeout(int timeout)throws IOException;
int getTimeout();
byte[] transceive(byte[] data) throws IOException;
void ignoreTag() throws IOException;
void notifyReadResult(boolean success);
void connect();
}