All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.Rpc<ReconcileInput,ReconcileOutput>>, org.opendaylight.yangtools.yang.binding.Rpc<ReconcileInput,ReconcileOutput>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface @Generated("mdsal-binding-generator") public interface Reconcile extends org.opendaylight.yangtools.yang.binding.Rpc<ReconcileInput,ReconcileOutput>
Request the reconciliation for given device or set of devices to the controller.

This class represents the following YANG schema fragment defined in module reconciliation

 rpc reconcile {
   input input {
     leaf-list nodes {
       type uint64;
     }
     leaf reconcile-all-nodes {
       type boolean;
       mandatory false;
       default false;
     }
   }
   output output {
     leaf result {
       type boolean;
     }
     leaf-list inprogress-nodes {
       type uint64;
     }
   }
 }
 
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final @NonNull org.opendaylight.yangtools.yang.common.QName
    YANG identifier of the statement represented by this class.
  • Method Summary

    Modifier and Type
    Method
    Description
    default Class<Reconcile>
     

    Methods inherited from interface org.opendaylight.yangtools.yang.binding.Rpc

    invoke
  • Field Details

    • QNAME

      static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
      YANG identifier of the statement represented by this class.
  • Method Details

    • implementedInterface

      default Class<Reconcile> implementedInterface()
      Specified by:
      implementedInterface in interface org.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.Rpc<ReconcileInput,ReconcileOutput>>