PosGateway.Exchange.Hps.Functions Maven / Gradle / Ivy
package PosGateway.Exchange.Hps;
public class Functions {
public interface IFunc {
Res Func() throws Exception;
}
public interface IFunc1 {
Res Func(T p);
}
public interface IFunc2 {
Res Func(T1 p1, T2 p2);
}
public interface IAction {
void Action();
}
public interface IAction1 {
void Action(T p1);
}
}