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

io.split.cache.SplitCache Maven / Gradle / Ivy

There is a newer version: 4.13.0
Show newest version
package io.split.cache;

import io.split.engine.experiments.ParsedSplit;

import java.util.Collection;
import java.util.List;

public interface SplitCache {
    void put(ParsedSplit split);
    boolean remove(String name);
    ParsedSplit get(String name);
    Collection getAll();
    Collection getMany(List names);
    long getChangeNumber();
    void setChangeNumber(long changeNumber);
    boolean trafficTypeExists(String trafficTypeName);
    void kill(String splitName, String defaultTreatment, long changeNumber);
    void clear();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy