summaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/listeners/SystemStateListener.java
blob: a1094e50fff27f5c7fa29ebe7b0b9d160deac2dd (plain) (blame)
1
2
3
4
5
6
7
8
// Copyright 2016 Yahoo Inc. 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.vdslib.state.ClusterState;

public interface SystemStateListener {
    public void handleNewSystemState(ClusterState state);
}