Merge "BUG-5006: rework SouthboundProviderTest, clean up"
[ovsdb.git] / library / impl / src / main / java / org / opendaylight / ovsdb / lib / LockStolenCallback.java
1 /*
2  * Copyright (c) 2014, 2015 EBay Software Foundation and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.ovsdb.lib;
10
11 /**
12  *  Callback that can be registered with {@link org.opendaylight.ovsdb.lib.OvsdbClient} to
13  *  get notified of a lock stolen.
14  *  @see <a href="http://tools.ietf.org/html/draft-pfaff-ovsdb-proto-04#section-4.1.10">ovsdb spec</a>
15  *  <p>
16  *
17  *  @see org.opendaylight.ovsdb.lib.OvsdbClient#lock(String, LockAquisitionCallback, LockStolenCallback)
18  */
19 public interface LockStolenCallback {
20
21     void lockStolen();
22
23 }