aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/transaction/Mutex.java
blob: c0b90219f9dc17674ffe6f10eb77c68949852954 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.transaction;

/**
 * An auto closeable mutex
 *
 * @author bratseth
 */
public interface Mutex extends AutoCloseable {

    void close();

}