Interface SchemaAware

All Known Implementing Classes:
AbstractSubTypeFieldType, BBoxField, CoordinateFieldType, CurrencyFieldType, LatLonPointSpatialField, PointType

public interface SchemaAware
An interface that can be extended to provide a callback mechanism for informing an IndexSchema instance of changes to it, dynamically performed at runtime.
Since:
SOLR-1131
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Informs the IndexSchema provided by the schema parameter of an event (e.g., a new FieldType was added, etc.
  • Method Details

    • inform

      void inform(IndexSchema schema)
      Informs the IndexSchema provided by the schema parameter of an event (e.g., a new FieldType was added, etc.
      Parameters:
      schema - The IndexSchema instance that inform of the update to.
      Since:
      SOLR-1131