Class DefaultChangeLogListener

    • Method Detail

      • online

        public void online​(boolean online)
        Description copied from interface: Plugin
        Called just before the server starts indicating if it is coming up in online mode.
        Specified by:
        online in interface Plugin
      • shutdown

        public void shutdown()
        Description copied from interface: Plugin
        Called when the server is shutting down.

        Plugins should shutdown any resources they are using cleanly.

        Specified by:
        shutdown in interface Plugin
      • log

        public void log​(ChangeSet changeSet)
        Description copied from interface: ChangeLogListener
        Log the batch of changes.

        For small transactions this will be all the changes in the transaction. For larger/longer transactions this can be a 'batch' of changes made and the actual transaction has not yet committed or rolled back and a later change set will contain the final changeSet for the transaction with it's final status of COMMITTED or ROLLBACK.

        Specified by:
        log in interface ChangeLogListener