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

com.anwen.mongo.replacer.Replacer Maven / Gradle / Ivy

There is a newer version: 2.1.5
Show newest version
package com.anwen.mongo.replacer;

import com.anwen.mongo.support.BoolFunction;

import java.lang.reflect.Method;

/**
 * 替换器接
 *
 * @author loser
 * @date 2024/4/30
 */
public interface Replacer {

    default int order() {
        return Integer.MIN_VALUE;
    }

    Object invoke(Object proxy, Object target, Method method, Object[] args) throws Throwable;

    BoolFunction supplier();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy