![JAR search and dependency download from the Maven repository](/logo.png)
org.opendaylight.controller.cluster.access.client.RequestCallback Maven / Gradle / Ivy
/*
* 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.access.client;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.jdt.annotation.Nullable;
import org.opendaylight.controller.cluster.access.concepts.Response;
@FunctionalInterface
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);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy