Uses of Interface
org.modeshape.graph.observe.Observer

Packages that use Observer
org.modeshape.clustering   
org.modeshape.connector.disk The classes that make up the connector that stores content in a ModeShape-specific format on fixed disk. 
org.modeshape.connector.infinispan The classes that make up the connector that stores content in a deployed instance of Infinispan. 
org.modeshape.connector.jbosscache The classes that make up the connector that stores content in a JBoss Cache instance. 
org.modeshape.connector.jcr The JCR connector provides access to a JCR repository instance running in the same process (and accessible via JNDI). 
org.modeshape.connector.store.jpa.model.simple The classes that define the "simple" storage model for the JPA connector. 
org.modeshape.graph.connector ModeShape uses connectors to access information from external systems (such as databases, other repositories, services, applications, etc.) and create graph representations of that information. 
org.modeshape.graph.connector.base This package defines a series of classes that can serve as base classes for a connector implementation. 
org.modeshape.graph.connector.inmemory The In-Memory Connector represents a connector that maintains a graph in transient in-process memory. 
org.modeshape.graph.connector.map The MapRepository class and its supporting classes provide a default implementation of the connector classes for connectors that support the transient or persistent mapping of a UUID to a standard representation of a node
org.modeshape.graph.connector.path The PathRepository class and its supporting classes provide a default read-only implementation of the connector classes for connectors that only support path-based access to a standard representation of a node
org.modeshape.graph.connector.xmlfile The XML File connector is a connector that maintains a graph in transient in-process memory, where the graph is loaded initially from an XML file. 
org.modeshape.graph.observe The Observation API provides several mechanisms for asynchronously observing changes to content. 
org.modeshape.graph.request.processor This portion of the ModeShape Graph API defines the processor for requests
org.modeshape.graph.search A small framework for a search engine component. 
org.modeshape.jcr The ModeShape implementation of the JCR API. 
org.modeshape.repository The components and services that make up ModeShape's lower-level graph engine, which is used within its JCR Engine. 
 

Uses of Observer in org.modeshape.clustering
 

Classes in org.modeshape.clustering that implement Observer
 class ClusteredObservationBus
          An implementation of a cluster-aware ObservationBus.
 

Methods in org.modeshape.clustering with parameters of type Observer
 boolean ClusteredObservationBus.register(Observer observer)
          Register the supplied observer.
 boolean ClusteredObservationBus.unregister(Observer observer)
          Unregister the supplied observer.
 

Uses of Observer in org.modeshape.connector.disk
 

Methods in org.modeshape.connector.disk that return Observer
protected  Observer DiskSource.getObserver()
           
 

Uses of Observer in org.modeshape.connector.infinispan
 

Methods in org.modeshape.connector.infinispan that return Observer
protected  Observer BaseInfinispanSource.getObserver()
           
 

Uses of Observer in org.modeshape.connector.jbosscache
 

Methods in org.modeshape.connector.jbosscache that return Observer
protected  Observer JBossCacheSource.getObserver()
           
 

Uses of Observer in org.modeshape.connector.jcr
 

Constructors in org.modeshape.connector.jcr with parameters of type Observer
JcrRequestProcessor(String sourceName, ExecutionContext context, Repository repository, Observer observer, Credentials credentials, CachePolicy defaultCachePolicy)
           
 

Uses of Observer in org.modeshape.connector.store.jpa.model.simple
 

Constructors in org.modeshape.connector.store.jpa.model.simple with parameters of type Observer
SimpleRequestProcessor(ExecutionContext context, SimpleJpaRepository repository, Observer observer, boolean updatesAllowed)
           
 

Uses of Observer in org.modeshape.graph.connector
 

Methods in org.modeshape.graph.connector that return Observer
 Observer RepositoryContext.getObserver()
          Get the observer that the connector may use to publish changes.
 

Uses of Observer in org.modeshape.graph.connector.base
 

Constructors in org.modeshape.graph.connector.base with parameters of type Observer
Processor(Transaction<NodeType,WorkspaceType> txn, Repository<NodeType,WorkspaceType> repository, Observer observer, boolean updatesAllowed, boolean creatingWorkspacesAllowed)
           
 

Uses of Observer in org.modeshape.graph.connector.inmemory
 

Methods in org.modeshape.graph.connector.inmemory that return Observer
 Observer InMemoryRepositorySource.DefaultRepositoryContext.getObserver()
          Get the observer that the connector may use to publish changes.
 

Uses of Observer in org.modeshape.graph.connector.map
 

Constructors in org.modeshape.graph.connector.map with parameters of type Observer
MapRequestProcessor(ExecutionContext context, MapRepository repository, Observer observer, boolean updatesAllowed)
           
 

Uses of Observer in org.modeshape.graph.connector.path
 

Constructors in org.modeshape.graph.connector.path with parameters of type Observer
PathRequestProcessor(ExecutionContext context, PathRepository repository, Observer observer, boolean updatesAllowed, PathRepositoryTransaction txn)
           
 

Uses of Observer in org.modeshape.graph.connector.xmlfile
 

Methods in org.modeshape.graph.connector.xmlfile that return Observer
 Observer XmlFileRepositorySource.DefaultRepositoryContext.getObserver()
          Get the observer that the connector may use to publish changes.
 

Uses of Observer in org.modeshape.graph.observe
 

Subinterfaces of Observer in org.modeshape.graph.observe
 interface ObservationBus
          A simple Observer that is itself Observable.
 

Classes in org.modeshape.graph.observe that implement Observer
 class ChangeObserver
          Abstract class that is used to signal that a change set has occurred.
 class LocalObservationBus
          A simple Observer that is itself Observable.
 class NetChangeObserver
          A specialized Observer that figures out the net changes made during a single set of changes.
 

Methods in org.modeshape.graph.observe with parameters of type Observer
 boolean Observable.register(Observer observer)
          Register the supplied observer.
 boolean LocalObservationBus.register(Observer observer)
          Register the supplied observer.
 boolean ChangeObservers.register(Observer observer)
          Register the supplied observer.
 boolean Observable.unregister(Observer observer)
          Unregister the supplied observer.
 boolean LocalObservationBus.unregister(Observer observer)
          Unregister the supplied observer.
 boolean ChangeObservers.unregister(Observer observer)
          Unregister the supplied observer.
 

Constructors in org.modeshape.graph.observe with parameters of type Observer
ChangeObservers.ObserverReference(Observer source)
           
 

Uses of Observer in org.modeshape.graph.request.processor
 

Constructors in org.modeshape.graph.request.processor with parameters of type Observer
RequestProcessor(String sourceName, ExecutionContext context, Observer observer)
           
RequestProcessor(String sourceName, ExecutionContext context, Observer observer, DateTime now)
           
RequestProcessor(String sourceName, ExecutionContext context, Observer observer, DateTime now, CachePolicy defaultCachePolicy)
           
 

Uses of Observer in org.modeshape.graph.search
 

Methods in org.modeshape.graph.search with parameters of type Observer
protected abstract  ProcessorType AbstractSearchEngine.createProcessor(ExecutionContext context, AbstractSearchEngine.Workspaces<WorkspaceType> workspaces, Observer observer, boolean readOnly)
          Create the SearchEngineProcessor implementation that can be used to operate against the SearchEngineWorkspace instances.
 SearchEngineProcessor SearchEngine.createProcessor(ExecutionContext context, Observer observer, boolean readOnly)
          Create the SearchEngineProcessor implementation that can be used to operate against the SearchEngineWorkspace instances.
 SearchEngineProcessor AbstractSearchEngine.createProcessor(ExecutionContext context, Observer observer, boolean readOnly)
          Create the SearchEngineProcessor implementation that can be used to operate against the SearchEngineWorkspace instances.
 

Constructors in org.modeshape.graph.search with parameters of type Observer
SearchEngineProcessor(String sourceName, ExecutionContext context, Observer observer, DateTime now)
           
 

Uses of Observer in org.modeshape.jcr
 

Classes in org.modeshape.jcr that implement Observer
protected  class JcrRepository.RepositoryObservationManager
           
 

Methods in org.modeshape.jcr that return Observer
 Observer JcrRepository.FederatedRepositoryContext.getObserver()
          Get the observer that the connector may use to publish changes.
 

Methods in org.modeshape.jcr with parameters of type Observer
 boolean JcrRepository.RepositoryObservationManager.register(Observer observer)
          Register the supplied observer.
 boolean JcrRepository.RepositoryObservationManager.unregister(Observer observer)
          Unregister the supplied observer.
 

Uses of Observer in org.modeshape.repository
 

Classes in org.modeshape.repository that implement Observer
 class RepositoryService
          A service that manages the RepositorySourcees defined within a configuration repository.
protected  class RepositoryService.ConfigurationChangeObserver
           
 

Methods in org.modeshape.repository that return Observer
 Observer SimpleRepositoryContext.getObserver()
          Get the observer that the connector may use to publish changes.
 

Methods in org.modeshape.repository with parameters of type Observer
 boolean RepositoryLibrary.register(Observer observer)
          Register the supplied observer.
 boolean RepositoryLibrary.unregister(Observer observer)
          Unregister the supplied observer.
 

Constructors in org.modeshape.repository with parameters of type Observer
SimpleRepositoryContext(ExecutionContext context, Observer observer, RepositoryConnectionFactory connectionFactory)
           
 



Copyright © 2008-2012 JBoss, a division of Red Hat. All Rights Reserved.