X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Factors%2Fclient%2FRequestCallback.java;fp=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Factors%2Fclient%2FRequestCallback.java;h=0000000000000000000000000000000000000000;hb=b0067e0a4bfa955f15c6259e019f954687264eff;hp=074eab8f1fa9a1e62af9d91415520c8dce32550c;hpb=3dffbf36946550b6bf11ac03a80cd4e5c58dbbdf;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/actors/client/RequestCallback.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/actors/client/RequestCallback.java deleted file mode 100644 index 074eab8f1f..0000000000 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/actors/client/RequestCallback.java +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved. - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v1.0 which accompanies this distribution, - * and is available at http://www.eclipse.org/legal/epl-v10.html - */ -package org.opendaylight.controller.cluster.datastore.actors.client; - -import javax.annotation.Nonnull; -import javax.annotation.Nullable; -import org.opendaylight.controller.cluster.access.concepts.Response; - -@FunctionalInterface -public interface RequestCallback { - /** - * Invoked when a particular request completes. - * - * @param response Response to the request - * @return Next client actor behavior - */ - @Nullable ClientActorBehavior complete(@Nonnull Response response); -}