You've already forked ChameleonBLEAPI
mirror of
https://github.com/RfidResearchGroup/ChameleonBLEAPI.git
synced 2026-05-12 11:20:47 -07:00
8 lines
140 B
Java
8 lines
140 B
Java
package com.proxgrind.chameleon.defined;
|
|
|
|
public interface ResultCallback<S, F> {
|
|
void onSuccess(S s);
|
|
|
|
void onFaild(F f);
|
|
}
|