Interface DataProcessor<T extends org.opendaylight.yangtools.yang.binding.DataObject>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void create​(T object)
      This method creates a new DataObject.
      void delete​(T object)
      This method removes a DataObject.
      void update​(T object)
      This method updates a DataObject.
    • Method Detail

      • create

        void create​(T object)
        This method creates a new DataObject.
        Parameters:
        object - - the object of type DataObject that has changed
      • update

        void update​(T object)
        This method updates a DataObject.
        Parameters:
        object - - the object of type DataObject that has changed
      • delete

        void delete​(T object)
        This method removes a DataObject.
        Parameters:
        object - - the object of type DataObject that has changed