Interface Trigger<T>

Type Parameters:
T - the type of objects in the store
All Known Implementing Classes:
RDFSPropertyTrigger, ThingTrigger

public interface Trigger<T>
Trigger for updates to Store.

Trigger implementations themselves should be written as simple single-threaded code. Callers may or may not invoke different triggers in parallel (but that is something that the caller handles, not the implementations of individual triggers).

  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    handles(Object object)
     
    void
    updated(@Nullable T existing, T update)
     
  • Method Details