/* * Copyright (c) 2018 Pantheon Technologies, 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.yang.binding; import com.google.common.annotations.Beta; import com.google.common.util.concurrent.ListenableFuture; import edu.umd.cs.findbugs.annotations.CheckReturnValue; import org.opendaylight.yangtools.yang.common.RpcResult; /** * Interface extended by all interfaces generated for a YANG {@code action} instantiated in keyed lists. * * @author Robert Varga */ @Beta @FunctionalInterface public interface KeyedListAction, T extends DataObject & Identifiable, I extends RpcInput, O extends RpcOutput> extends Action, I, O> { @Override @CheckReturnValue ListenableFuture> invoke(KeyedInstanceIdentifier path, I input); }