Interface ChangeSetFilter

All Known Subinterfaces:
FilterProvider
All Known Implementing Classes:
ChangeSetFilterImpl

public interface ChangeSetFilter
A ChangeSetFilter is capable of inspecting a ChangeSet and deciding if the corresponding consumer (eg EventListener) is possibly interested in it or definitely not.

Falsely deciding to include is fine, falsely deciding to exclude is not.

  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    excludes(ChangeSet changeSet)
    Decides if the commit belonging to the provided ChangeSet is potentially relevant to the listener or if it can definitely be excluded.
  • Method Details

    • excludes

      boolean excludes(ChangeSet changeSet)
      Decides if the commit belonging to the provided ChangeSet is potentially relevant to the listener or if it can definitely be excluded.