org.opendaylight.yangtools.binding.Rpc Maven / Gradle / Ivy
/*
* Copyright (c) 2022 PANTHEON.tech, s.r.o. 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.yangtools.binding;
import com.google.common.util.concurrent.ListenableFuture;
import edu.umd.cs.findbugs.annotations.CheckReturnValue;
import org.eclipse.jdt.annotation.NonNull;
import org.opendaylight.yangtools.yang.common.RpcResult;
/**
* Interface extended by all interfaces generated for a YANG {@code rpc}.
*/
public non-sealed interface Rpc extends BindingContract> {
/**
* Invoke the RPC.
*
* @param input Input argument
* @return Future result of invocation
* @throws NullPointerException if any of the arguments are null
*/
@CheckReturnValue
@NonNull ListenableFuture<@NonNull RpcResult<@NonNull O>> invoke(@NonNull I input);
}