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

org.wildfly.clustering.infinispan.distribution.LocalKeyDistribution Maven / Gradle / Ivy

/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.wildfly.clustering.infinispan.distribution;

import java.util.Collections;
import java.util.List;

import org.infinispan.remoting.transport.Address;
import org.infinispan.remoting.transport.LocalModeAddress;

/**
 * Key distribution implementation for a local cache.
 * @author Paul Ferraro
 */
public enum LocalKeyDistribution implements KeyDistribution {
    INSTANCE;

    @Override
    public Address getPrimaryOwner(Object key) {
        return LocalModeAddress.INSTANCE;
    }

    @Override
    public List
getOwners(Object key) { return Collections.singletonList(LocalModeAddress.INSTANCE); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy