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

org.jgroups.raft.blocks.RaftAsyncCounter Maven / Gradle / Ivy

There is a newer version: 1.0.13.Final
Show newest version
package org.jgroups.raft.blocks;

import org.jgroups.blocks.atomic.AsyncCounter;
import org.jgroups.raft.Options;

/**
 * TODO! document this
 */
public interface RaftAsyncCounter extends AsyncCounter, RaftCounter {

    @Override
    default RaftAsyncCounter async() {
        return this;
    }

    @Override
    RaftAsyncCounter withOptions(Options opts);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy