23 lines
951 B
Java
23 lines
951 B
Java
package com.afunx.ble.blelitelib.operation;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface BleOperation extends Runnable {
|
|
public static final int BLE_CLOSE = 2;
|
|
public static final int BLE_CONNECT = 1;
|
|
public static final int BLE_DISCOVER_SERVICE = 3;
|
|
public static final int BLE_READ_CHARACTERISTIC = 4;
|
|
public static final int BLE_REQUEST_MTU = 5;
|
|
public static final int BLE_WRITE_CHARACTERISITC_NO_RESPONSE_PACKET = 10;
|
|
public static final int BLE_WRITE_CHARACTERISITC_NO_RESPONSE_PACKET2 = 11;
|
|
public static final int BLE_WRITE_CHARACTERISTIC = 6;
|
|
public static final int BLE_WRITE_CHARACTERISTIC_NO_RESPONSE = 8;
|
|
public static final int BLE_WRITE_CHARACTERISTIC_NO_RESPONSE_20 = 9;
|
|
public static final int BLE_WRITE_CHARACTERISTIC_NO_RESPONSE_INTERRUPT = 12;
|
|
public static final int BLE_WRITE_DESCRIPTOR = 7;
|
|
|
|
int getOperatcionCode();
|
|
|
|
@Override // java.lang.Runnable
|
|
void run();
|
|
}
|