summaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/FleetControllerTask.java
blob: 1c717f149305ea9b84900902c2746897d9682e68 (plain) (blame)
1
2
3
4
5
6
7
8
9
// 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;

/**
 * Represents a task that the fleet controller should perform.
 */
public interface FleetControllerTask {
    public void execute(FleetController fleetController);
}