summaryrefslogtreecommitdiffstats
path: root/clustercontroller-utils/src/main/java/com/yahoo/vespa/clustercontroller/utils/communication/async/AsyncCallback.java
blob: a68b90b6eefb14b198e7f4bc9fa03c67da2de053 (plain) (blame)
1
2
3
4
5
6
7
// 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 interface AsyncCallback<T>   {
    /** Callback indicating the given operation has completed. */
    public void done(AsyncOperation<T> op);
}