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

net.ravendb.client.documents.indexes.RollingIndex Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
package net.ravendb.client.documents.indexes;

import java.util.Map;

public class RollingIndex {
    private Map activeDeployments;

    private long raftCommandIndex;

    public Map getActiveDeployments() {
        return activeDeployments;
    }

    public void setActiveDeployments(Map activeDeployments) {
        this.activeDeployments = activeDeployments;
    }

    public long getRaftCommandIndex() {
        return raftCommandIndex;
    }

    public void setRaftCommandIndex(long raftCommandIndex) {
        this.raftCommandIndex = raftCommandIndex;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy