Added Android UWB code

This commit is contained in:
2019-04-02 18:48:48 +02:00
parent 799e563ff5
commit 5a7507a93e
82 changed files with 12323 additions and 137 deletions

View File

@@ -0,0 +1,13 @@
package no.nordicsemi.android.ble;
import androidx.annotation.NonNull;
abstract class TimeoutHandler {
/**
* Method called when the request timed out.
*
* @param request the request that timed out.
*/
abstract void onRequestTimeout(@NonNull final TimeoutableRequest request);
}