summaryrefslogtreecommitdiffstats
path: root/clustercontroller-utils/src/main/java/com/yahoo/vespa/clustercontroller/utils/communication/async/AsyncCallback.java
blob: 92697e0e277ad0d7bd1a7be4395d039229f2c771 (plain) (blame)
1
2
3
4
5
6
7
// Copyright 2017 Yahoo Holdings. 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);
}