Interface AfterRecordUpdateListener


  • public interface AfterRecordUpdateListener
    Listener to receive events after an update operation occurs on records (documents, vertices and edges).

    NOTE: the callback is invoked synchronously. For this reason the execution should be as fast as possible. Even with a fast implementation, using this callback may cause a sensible slowdown of update operations.

    Author:
    Luca Garulli ([email protected])
    • Method Detail

      • onAfterUpdate

        void onAfterUpdate​(Record record)
        Callback invoked right after a record (documents, vertices and edges) has been updated. You can use this callback to enrich the record with additional properties.