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

com.wavefront.agent.preprocessor.AnnotatedPredicate Maven / Gradle / Ivy

There is a newer version: 13.4
Show newest version
package com.wavefront.agent.preprocessor;

import java.util.function.Predicate;
import javax.annotation.Nullable;

/**
 * Base for all "filter"-type rules.
 *
 * 

Created by Vasily on 9/15/16. */ public interface AnnotatedPredicate extends Predicate { @Override default boolean test(T input) { return test(input, null); } boolean test(T input, @Nullable String[] messageHolder); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy