Interface BulkTableEvent


public interface BulkTableEvent
The bulk table event.
  • Method Summary

    Modifier and Type
    Method
    Description
    default String
    Deprecated.
    boolean
    Return true if rows were deleted.
    boolean
    Return true if rows were inserted.
    boolean
    Return true if rows were updated.
    Return the name of the table that was involved.
  • Method Details

    • tableName

      Return the name of the table that was involved.
    • getTableName

      Deprecated.
      Deprecated migrate to tableName().
    • isInsert

      boolean isInsert()
      Return true if rows were inserted.
    • isUpdate

      boolean isUpdate()
      Return true if rows were updated.
    • isDelete

      boolean isDelete()
      Return true if rows were deleted.