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

org.wildfly.clustering.group.Group Maven / Gradle / Ivy

Go to download

This module contains a public API for a variety of clustering capabilities for use by both applications and other subsystems.

There is a newer version: 26.1.3.Final
Show newest version
/*
 * JBoss, Home of Professional Open Source.
 * Copyright 2013, Red Hat, Inc., and individual contributors
 * as indicated by the @author tags. See the copyright.txt file in the
 * distribution for a full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
package org.wildfly.clustering.group;

import java.util.List;

import org.wildfly.clustering.Registrar;

/**
 * Represents a groups of nodes.
 *
 * @author Paul Ferraro
 */
public interface Group extends Registrar {

    /**
     * @deprecated Replaced by {@link GroupListener}.
     */
    @Deprecated interface Listener extends GroupListener {
        /**
         * Indicates that the membership of the group has changed.
         *
         * @param previousMembers previous group members
         * @param members new group members
         * @param merged indicates whether the membership change is the result of a merge view
         */
        void membershipChanged(List previousMembers, List members, boolean merged);

        @Override
        default void membershipChanged(Membership previousMembership, Membership membership, boolean merged) {
            this.membershipChanged(previousMembership.getMembers(), membership.getMembers(), merged);
        }
    }

    /**
     * Registers a membership listener for the group.
     *
     * @param listener listener to be added
     * @deprecated Replaced by {@link #register(GroupListener)}.
     */
    @Deprecated default void addListener(Listener listener) {
        this.register(listener);
    }

    /**
     * Removes a registered listener from the group.
     *
     * @param listener listener to be removed
     * @deprecated Replaced by {@link org.wildfly.clustering.Registration#close()}
     */
    @Deprecated void removeListener(Listener listener);

    /**
     * Returns the logical name of this group.
     *
     * @return the group name
     */
    String getName();

    /**
     * Indicates whether or not we are the group coordinator.
     *
     * @return true, if we are the group coordinator, false otherwise
     * @deprecated Replaced by {@link Membership#isCoordinator()}.
     */
    @Deprecated default boolean isCoordinator() {
        return this.getMembership().isCoordinator();
    }

    /**
     * Returns the local node.
     * @deprecated Replaced by {@link #getLocalMember()}.
     */
    @Deprecated default Node getLocalNode() {
        return this.getLocalMember();
    }

    /**
     * Returns the local member.
     *
     * @return the local member
     */
    Node getLocalMember();

    /**
     * Returns the group coordinator node.
     *
     * @return the group coordinator node
     * @deprecated Replaced by {@link Membership#getCoordinator()}.
     */
    @Deprecated default Node getCoordinatorNode() {
        return this.getMembership().getCoordinator();
    }

    /**
     * Returns the list of nodes that are members of this group.
     *
     * @return a list of nodes
     * @deprecated Replaced by {@link Membership#getNodes()}.
     */
    @Deprecated default List getNodes() {
        return this.getMembership().getMembers();
    }

    /**
     * Gets the current membership of this group
     * @return the group membership
     */
    Membership getMembership();

    /**
     * Indicates whether this is a local group.  A local group only ever contains a single member.
     * @return true, if this is a local group, false otherwise.
     * @deprecated Replaced by {@link #isSingleton()}.
     */
    @Deprecated default boolean isLocal() {
        return this.isSingleton();
    }

    /**
     * Indicates whether or not this is a singleton group.  The membership of a singleton group contains only the local member and never changes.
     * @return true, if this is a singleton group, false otherwise.
     */
    boolean isSingleton();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy