aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/listeners/SystemStateListener.java
blob: 9b36e66ddaef5a5b1fd190cb0ebcb2370025c864 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.core.listeners;

import com.yahoo.vespa.clustercontroller.core.ClusterStateBundle;

public interface SystemStateListener {

    // TODO consider rename to bundle
    void handleNewPublishedState(ClusterStateBundle states);

    /**
     * Invoked at the edge when all pending cluster state bundles and version activations
     * have been successfully ACKed by all distributors in the cluster.
     *
     * @param states bundle that has converged across all distributors
     */
    default void handleStateConvergedInCluster(ClusterStateBundle states) {}

    default void handleNewCandidateState(ClusterStateBundle states) {}

}