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

io.hekate.cluster.event.ClusterLeaveEvent Maven / Gradle / Ivy

/*
 * Copyright 2022 The Hekate Project
 *
 * The Hekate Project licenses this file to you under the Apache License,
 * version 2.0 (the "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at:
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */

package io.hekate.cluster.event;

import io.hekate.cluster.ClusterNode;
import io.hekate.cluster.ClusterService;
import io.hekate.cluster.ClusterTopology;
import io.hekate.core.HekateSupport;
import java.util.List;

/**
 * Cluster leave event.
 *
 * 

* This event is fired by the {@link ClusterService} every time when local node leaves the cluster. * Reason of this event can be obtained via the {@link #reason()} method. *

* *

* For more details about the cluster events processing please see the documentation of {@link ClusterEventListener} interface. *

* * @see ClusterEventListener */ public class ClusterLeaveEvent extends ClusterEventBase { private final ClusterLeaveReason reason; private final List added; private final List removed; /** * Constructs a new instance. * * @param reason Reason of this event. * @param topology Topology. * @param added List of newly joined nodes (see {@link #added()}). * @param removed List of nodes that left the cluster (see {@link #removed()}). * @param hekate Delegate for {@link #hekate()}. */ public ClusterLeaveEvent(ClusterLeaveReason reason, ClusterTopology topology, List added, List removed, HekateSupport hekate) { super(topology, hekate); this.reason = reason; this.added = added; this.removed = removed; } /** * Returns the reason of this event. * * @return Reason. */ public ClusterLeaveReason reason() { return reason; } /** * Returns the list of new nodes that joined the cluster. * * @return List of new nodes that joined the cluster. */ public List added() { return added; } /** * Returns the list of nodes that left the cluster. * * @return List of nodes that left the cluster. */ public List removed() { return removed; } /** * Returns {@link ClusterEventType#LEAVE}. * * @return {@link ClusterEventType#LEAVE}. */ @Override public ClusterEventType type() { return ClusterEventType.LEAVE; } /** * Returns this instance. * * @return This instance. */ @Override public ClusterLeaveEvent asLeave() { return this; } @Override public String toString() { return getClass().getSimpleName() + "[added=" + added() + ", removed=" + removed() + ", topology=" + topology() + ']'; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy