Refactor DOM{Action,Rpc}Implementation
[mdsal.git] / dom / mdsal-dom-api / src / main / java / org / opendaylight / mdsal / dom / api / DOMActionImplementation.java
index 568f424eee0d1eb4571f5eaae4fcea6fecb33afb..d2876c05f7d7c75b1e35603ae5ac7d45a01764f9 100644 (file)
@@ -7,7 +7,6 @@
  */
 package org.opendaylight.mdsal.dom.api;
 
-import com.google.common.annotations.Beta;
 import com.google.common.util.concurrent.ListenableFuture;
 import org.eclipse.jdt.annotation.NonNullByDefault;
 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
@@ -17,13 +16,10 @@ import org.opendaylight.yangtools.yang.model.api.stmt.SchemaNodeIdentifier.Absol
 /**
  * Interface implemented by an individual operation implementation. This API allows for dispatch implementations, e.g.
  * an individual object handling a multitude of operations.
- *
- * @author Robert Varga
  */
-@Beta
 @FunctionalInterface
 @NonNullByDefault
-public interface DOMActionImplementation {
+public non-sealed interface DOMActionImplementation extends DOMOperationImplementation {
     /**
      * Initiate invocation of the action. Implementations of this method are expected to not block.
      *
@@ -31,18 +27,9 @@ public interface DOMActionImplementation {
      *             instantiated on top of the conceptual {@link StoreTreeNode}.
      * @param path {@link DOMDataTreeIdentifier} of parent data node which action attached to.
      * @param input Input arguments
-     * @return A FluentFuture which completes with the result of invocation
+     * @return A {@link ListenableFuture} which completes with the result of invocation
      * @throws NullPointerException if any of the arguments is null
      */
-    ListenableFuture<? extends DOMActionResult> invokeAction(Absolute type, DOMDataTreeIdentifier path,
-            ContainerNode input);
-
-    /**
-     * Return the relative invocation cost of this implementation. Default implementation returns 0.
-     *
-     * @return Non-negative cost of invoking this implementation.
-     */
-    default long invocationCost() {
-        return 0;
-    }
+    ListenableFuture<? extends DOMRpcResult> invokeAction(Absolute type, DOMDataTreeIdentifier path,
+        ContainerNode input);
 }