aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/routing/rotation/RotationState.java
blob: 19e816a0b5111000766c6f64dda6daf83639cefb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.routing.rotation;

/**
 * The possible states of a global rotation.
 *
 * @author mpolden
 */
public enum RotationState {

    /** Rotation has status 'in' and is receiving traffic */
    in,

    /** Rotation has status 'out' and is *NOT* receiving traffic */
    out,

    /** Rotation status is currently unknown, or no global rotation has been assigned */
    unknown

}