Interface SailChangedEvent

All Known Implementing Classes:
DefaultSailChangedEvent

public interface SailChangedEvent
Event object that is send to SailChangedListeners to indicate that the contents of the Sail that sent the event have changed.
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    The Sail object that sent this event.
    boolean
    Indicates if statements were added to the Sail.
    boolean
    Indicates if statements were removed from the Sail.
  • Method Details Link icon

    • getSail Link icon

      Sail getSail()
      The Sail object that sent this event.
    • statementsAdded Link icon

      boolean statementsAdded()
      Indicates if statements were added to the Sail.
      Returns:
      true if statements were added during a transaction, false otherwise.
    • statementsRemoved Link icon

      boolean statementsRemoved()
      Indicates if statements were removed from the Sail.
      Returns:
      true if statements were removed during a transaction, false otherwise.