aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/transaction/Mutex.java
blob: 8a1ed7fc828805bdf3ccdb0b6afc5c12b9815e88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Yahoo. 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();

}