/*
* Copyright (c) 2011-2019 Contributors to the Eclipse Foundation
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
* which is available at https://www.apache.org/licenses/LICENSE-2.0.
*
* SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
*/
package io.vertx.core.spi.cluster;
import io.vertx.core.Promise;
import io.vertx.core.Vertx;
import io.vertx.core.eventbus.Message;
Used by the clustered EventBus
to select a node for a given message.. This selector is skipped only when the user raises the DeliveryOptions.setLocalOnly(boolean)
flag. Consequently, implementations must be aware of local EventBus
registrations.
/**
* Used by the {@link io.vertx.core.eventbus.EventBus clustered EventBus} to select a node for a given message..
* <p>
* This selector is skipped only when the user raises the {@link io.vertx.core.eventbus.DeliveryOptions#setLocalOnly(boolean)} flag.
* Consequently, implementations must be aware of local {@link io.vertx.core.eventbus.EventBus} registrations.
*/
public interface NodeSelector {
Invoked before the vertx
instance tries to join the cluster. /**
* Invoked before the {@code vertx} instance tries to join the cluster.
*/
void init(Vertx vertx, ClusterManager clusterManager);
Invoked after the clustered EventBus
has started. /**
* Invoked after the clustered {@link io.vertx.core.eventbus.EventBus} has started.
*/
void eventBusStarted();
Select a node for sending the given message
. The provided promise
needs to be completed with Promise.tryComplete
and Promise.tryFail
as it might completed outside the selector.
Throws: - IllegalArgumentException – if
Message.isSend()
returns false
/**
* Select a node for sending the given {@code message}.
*
* <p> The provided {@code promise} needs to be completed with {@link Promise#tryComplete} and {@link Promise#tryFail}
* as it might completed outside the selector.
*
* @throws IllegalArgumentException if {@link Message#isSend()} returns {@code false}
*/
void selectForSend(Message<?> message, Promise<String> promise);
Select a node for publishing the given message
. The provided promise
needs to be completed with Promise.tryComplete
and Promise.tryFail
as it might completed outside the selector.
Throws: - IllegalArgumentException – if
Message.isSend()
returns true
/**
* Select a node for publishing the given {@code message}.
*
* <p> The provided {@code promise} needs to be completed with {@link Promise#tryComplete} and {@link Promise#tryFail}
* as it might completed outside the selector.
*
* @throws IllegalArgumentException if {@link Message#isSend()} returns {@code true}
*/
void selectForPublish(Message<?> message, Promise<Iterable<String>> promise);
Invoked by the ClusterManager
when messaging handler registrations are added or removed. /**
* Invoked by the {@link ClusterManager} when messaging handler registrations are added or removed.
*/
void registrationsUpdated(RegistrationUpdateEvent event);
Invoked by the ClusterManager
when some handler registrations have been lost. /**
* Invoked by the {@link ClusterManager} when some handler registrations have been lost.
*/
void registrationsLost();
}