Class BackgroundObserver
- java.lang.Object
-
- org.apache.jackrabbit.oak.spi.commit.BackgroundObserver
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
,Observer
public class BackgroundObserver extends java.lang.Object implements Observer, java.io.Closeable
An observer that uses a change queue and a background thread to forward content changes to another observer. The mechanism is designed so that thecontentChanged(NodeState, CommitInfo)
method will never block, regardless of the behavior of the other observer. If that observer blocks or is too slow to consume all content changes, causing the change queue to fill up, any further update will automatically be merged into just one external content change, causing potential loss of local commit information. To help prevent such cases, any sequential external content changes that the background observer thread has yet to process are optionally (seealwaysCollapseExternalEvents
andoak.observation.alwaysCollapseExternal
) automatically merged to just one change.
-
-
Field Summary
Fields Modifier and Type Field Description static int
DEFAULT_QUEUE_SIZE
-
Constructor Summary
Constructors Constructor Description BackgroundObserver(@NotNull Observer observer, @NotNull java.util.concurrent.Executor executor)
BackgroundObserver(@NotNull Observer observer, @NotNull java.util.concurrent.Executor executor, int queueLength)
BackgroundObserver(@NotNull Observer observer, @NotNull java.util.concurrent.Executor executor, int queueLength, @NotNull java.lang.Thread.UncaughtExceptionHandler exceptionHandler)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
Clears the change queue and signals the background thread to stop without making any furthercontentChanged(NodeState, CommitInfo)
calls to the background observer.void
contentChanged(@NotNull NodeState root, @NotNull CommitInfo info)
Observes a content change.int
getMaxQueueLength()
@NotNull BackgroundObserverMBean
getMBean()
-
-
-
Field Detail
-
DEFAULT_QUEUE_SIZE
public static final int DEFAULT_QUEUE_SIZE
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
BackgroundObserver
public BackgroundObserver(@NotNull @NotNull Observer observer, @NotNull @NotNull java.util.concurrent.Executor executor, int queueLength, @NotNull @NotNull java.lang.Thread.UncaughtExceptionHandler exceptionHandler)
-
BackgroundObserver
public BackgroundObserver(@NotNull @NotNull Observer observer, @NotNull @NotNull java.util.concurrent.Executor executor, int queueLength)
-
BackgroundObserver
public BackgroundObserver(@NotNull @NotNull Observer observer, @NotNull @NotNull java.util.concurrent.Executor executor)
-
-
Method Detail
-
getMaxQueueLength
public int getMaxQueueLength()
- Returns:
- The max queue length used for this observer's queue
-
close
public void close()
Clears the change queue and signals the background thread to stop without making any furthercontentChanged(NodeState, CommitInfo)
calls to the background observer. If the thread is currently in the middle of such a call, then that call is allowed to complete; i.e. the thread is not forcibly interrupted. This method returns immediately without blocking to wait for the thread to finish.After a call to this method further calls to
contentChanged(NodeState, CommitInfo)
will throw aIllegalStateException
.- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
-
getMBean
@NotNull public @NotNull BackgroundObserverMBean getMBean()
-
contentChanged
public void contentChanged(@NotNull @NotNull NodeState root, @NotNull @NotNull CommitInfo info)
Description copied from interface:Observer
Observes a content change. See theObserver
class javadocs and relevant repository and observer registration details for more information on when and how this method gets called.- Specified by:
contentChanged
in interfaceObserver
- Parameters:
root
- root state of the repositoryinfo
- commit information- Throws:
java.lang.IllegalStateException
- ifclose()
has already been called.
-
-