Create actioncallback.java

This commit is contained in:
DXL
2020-08-27 12:04:49 +08:00
committed by GitHub
parent 0fff98530b
commit 02be9eb6f2
+7
View File
@@ -0,0 +1,7 @@
package com.proxgrind.chameleon.callback;
public interface ActionCallback<S, F> {
void onSuccess(S s);
void onFail(F f);
}