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

software.amazon.event.ruler.GenericMachineConfiguration Maven / Gradle / Ivy

Go to download

Event Ruler is a Java library that allows matching Rules to Events. An event is a list of fields, which may be given as name/value pairs or as a JSON object. A rule associates event field names with lists of possible values. There are two reasons to use Ruler: 1/ It's fast; the time it takes to match Events doesn't depend on the number of Rules. 2/ Customers like the JSON "query language" for expressing rules.

There is a newer version: 1.8.1
Show newest version
package software.amazon.event.ruler;

/**
 * Configuration for a GenericMachine. For descriptions of the options, see GenericMachine.Builder.
 */
class GenericMachineConfiguration {

    private final boolean additionalNameStateReuse;

    GenericMachineConfiguration(boolean additionalNameStateReuse) {
        this.additionalNameStateReuse = additionalNameStateReuse;
    }

    boolean isAdditionalNameStateReuse() {
        return additionalNameStateReuse;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy