Uses of Interface
org.apache.solr.rest.ManagedResourceObserver
Packages that use ManagedResourceObserver
Package
Description
Solr RESTful APIs.
Analysis-related functionality for RESTful API access to managed resources related to the schema,
such as stopwords, protected words, and synonyms.
-
Uses of ManagedResourceObserver in org.apache.solr.rest
Methods in org.apache.solr.rest with parameters of type ManagedResourceObserverModifier and TypeMethodDescriptionvoidRestManager.Registry.registerManagedResource(String resourceId, Class<? extends ManagedResource> implClass, ManagedResourceObserver observer) Register the need to use a ManagedResource; this method is typically called by a Solr component during core initialization to register itself as an observer of a specific type of ManagedResource.Method parameters in org.apache.solr.rest with type arguments of type ManagedResourceObserverModifier and TypeMethodDescriptionvoidManagedResource.loadManagedDataAndNotify(Collection<ManagedResourceObserver> observers) Called once during core initialization to get the managed data loaded from storage and notify observers.protected voidManagedResource.notifyObserversDuringInit(org.apache.solr.common.util.NamedList<?> args, Collection<ManagedResourceObserver> observers) Notifies all registered observers that the ManagedResource is initialized. -
Uses of ManagedResourceObserver in org.apache.solr.rest.schema.analysis
Classes in org.apache.solr.rest.schema.analysis that implement ManagedResourceObserverModifier and TypeClassDescriptionclassAbstract based class for implementing TokenFilterFactory objects that are managed by the REST API.classTokenFilterFactory that uses the ManagedWordSetResource implementation for managing stop words using the REST API.classTokenFilterFactory and ManagedResource implementation for doing CRUD on synonyms using the REST API.