aboutsummaryrefslogtreecommitdiffstats
TagDownloadAuthorAge
1.3.8commit 100a234c34...jenkins-releng4 years
1.3.7commit 60a0f1e00a...jenkins-releng4 years
1.3.4commit c0c5cf91d7...jenkins-releng5 years
1.3.2commit aac5983597...Bengt Thuree5 years
1.3.1commit 5545bfc0cc...Bengt Thuree5 years
1.3.0commit 53afd948eb...Bengt Thuree5 years
3.0.1-ONAPcommit b36a88c07d...Jessica Wagantall5 years
3.0.0-ONAPcommit b36a88c07d...Jessica Wagantall6 years
1.2.2commit cd817fa988...Jessica Wagantall6 years
1.2.1commit b36a88c07d...Jessica Wagantall6 years
1.2.0commit 66cf2b1200...Jessica Wagantall6 years
2.0.0-ONAPcommit a221b6c72e...Jessica Wagantall6 years
v1.1.0commit a221b6c72e...Jessica Wagantall6 years
1.0.0-ONAPcommit 8927501bee...Jessica Wagantall6 years
1.0.0-Amsterdamcommit 8927501bee...Jessica Wagantall7 years
v1.0.2commit 8927501bee...Jessica Wagantall7 years
v1.0.1commit 8d3c850ddc...Jessica Wagantall7 years
v1.0.0commit e09cd86a6c...Jessica Wagantall7 years
release/mercurycommit 40f14a360b...Andrew Grimberg7 years
v2.0.0commit 40f14a360b...Andrew Grimberg7 years
release/suncommit 71941c0c13...Andrew Grimberg8 years
not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * ============LICENSE_END============================================= * ==================================================================== */ package org.onap.music.lockingservice.zookeeper; import org.apache.zookeeper.KeeperException; /** * A callback object which can be used for implementing retry-able operations in the * {@link org.onap.music.lockingservice.zookeeper.ProtocolSupport} class * */ public interface ZooKeeperOperation { /** * Performs the operation - which may be involved multiple times if the connection * to ZooKeeper closes during this operation * * @return the result of the operation or null * @throws KeeperException FILL IN * @throws InterruptedException FILL IN */ public boolean execute() throws KeeperException, InterruptedException; }