aboutsummaryrefslogtreecommitdiffstats
path: root/clustercontroller-utils/src/main/java/com/yahoo/vespa/clustercontroller/utils/communication/async/AsyncCallback.java
blob: 9519bd252718141cbd01e8f0fd1b7fc31bb445ae (plain) (blame)
1
2
3
4
5
6
7
8
9
// Copyright Vespa.ai. 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. */
    void done(AsyncOperation<T> op);

}