summaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/status/RunDataExtractor.java
blob: 128ba10484a04fda64e5098f471a7137420805f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.core.status;

import com.yahoo.vdslib.state.ClusterState;
import com.yahoo.vespa.clustercontroller.core.FleetControllerOptions;
import com.yahoo.vespa.clustercontroller.core.ContentCluster;

/**
 * @author <a href="mailto:humbe@yahoo-inc.com">Haakon Humberset</a>
 */
public interface RunDataExtractor {

    public ClusterState getLatestClusterState();
    public FleetControllerOptions getOptions();
    public long getConfigGeneration();
    public ContentCluster getCluster();

}