Interface UpdateAgent

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface UpdateAgent
An UpdateAgent is a callback class that is called to handle a document after it has been updated. Typically the UpdateAgent might take responsibility for writing the updated document back to persistent storage.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    update(NodeInfo node, Controller controller)
    Handle an updated document.
  • Method Details