All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.icthh.xm.commons.lep.api.LepExecutor Maven / Gradle / Ivy

There is a newer version: 4.0.21
Show newest version
package com.icthh.xm.commons.lep.api;

import java.util.function.Function;
import java.util.function.Supplier;

public interface LepExecutor {
    LepExecutor ifLepPresent(Function executeLepMethod);
    LepExecutor ifLepNotExists(Supplier executeOriginalMethod);
    Object getMethodResult();
}