aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-utils/src/main/java/com/yahoo/vespa/clustercontroller/utils/communication/async/AsyncUtils.java
blob: 71d6f534a9af98bff086125d08a5c5424d6f4963 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.utils.communication.async;

public class AsyncUtils {

    public static void waitFor(AsyncOperation op) {
        while (!op.isDone()) {
            try{ Thread.sleep(1); } catch (InterruptedException e) {}
        }
    }
}