aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/concurrent/maintenance/JobControlState.java
blob: 0114aef057229eddd80919094d3f1926e1261c32 (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.concurrent.maintenance;

import com.yahoo.transaction.Mutex;

import java.util.Set;

/**
 * Interface for managing job state and synchronization
 *
 * @author mpolden
 */
public interface JobControlState {

    /** Returns the set of jobs that are temporarily inactive */
    Set<String> readInactiveJobs();

    /** Acquire lock for running given job */
    Mutex lockMaintenanceJob(String job);

}