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

io.split.engine.experiments.FetchResult Maven / Gradle / Ivy

The newest version!
package io.split.engine.experiments;

import java.util.Set;

public class FetchResult {
    private boolean _success;
    private boolean _retry;
    private Set _segments;

    public FetchResult(boolean success, boolean retry, Set segments) {
        _success = success;
        _retry = retry;
        _segments = segments;
    }

    public boolean isSuccess() {
        return _success;
    }
    public boolean retry() {
        return _retry;
    }

    public Set getSegments() {
        return _segments;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy