Package com.illumon.iris.db.tables.live
Class LiveTableRefreshCombiner
java.lang.Object
com.illumon.util.referencecounting.ReferenceCounted
com.illumon.iris.db.util.liveness.ReferenceCountedLivenessNode
com.illumon.iris.db.util.liveness.LivenessArtifact
com.illumon.iris.db.tables.live.LiveTableRefreshCombiner
- All Implemented Interfaces:
com.fishlib.base.log.LogOutputAppendable
,LiveTable
,LiveTableRegistrar
,LivenessManager
,LivenessNode
,LivenessReferent
,Serializable
,Runnable
public class LiveTableRefreshCombiner
extends LivenessArtifact
implements LiveTable, LiveTableRegistrar
Combines multiple
LiveTable
s into a single one, in order to allow for update parallelization within the
LiveTableMonitor
.- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Add a table to this registrar.void
destroy()
Attempt to release (destructively when necessary) resources held by this object.void
maybeRefreshTable
(LiveTable table, boolean onlyIfHaveLock) void
refresh()
Refresh this LiveTable.void
removeTable
(LiveTable liveTable) Remove a table from this registrar.void
requestRefresh
(LiveTable table) Methods inherited from class com.illumon.iris.db.util.liveness.LivenessArtifact
manageWithCurrentScope, unmanage, unmanage
Methods inherited from class com.illumon.iris.db.util.liveness.ReferenceCountedLivenessNode
dropReference, getWeakReference, initializeTransientFieldsForLiveness, onReferenceCountAtZero, tryManage, tryRetainReference
Methods inherited from class com.illumon.util.referencecounting.ReferenceCounted
append, decrementReferenceCount, incrementReferenceCount, resetReferenceCount, toString, tryDecrementReferenceCount, tryIncrementReferenceCount
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.illumon.iris.db.util.liveness.LivenessManager
manage
Methods inherited from interface com.illumon.iris.db.util.liveness.LivenessReferent
getReferentDescription, retainReference
Methods inherited from interface com.illumon.iris.db.tables.live.LiveTableRegistrar
addTables, removeTables
-
Constructor Details
-
LiveTableRefreshCombiner
public LiveTableRefreshCombiner()
-
-
Method Details
-
refresh
public void refresh()Description copied from interface:LiveTable
Refresh this LiveTable. -
addTable
Description copied from interface:LiveTableRegistrar
Add a table to this registrar.- Specified by:
addTable
in interfaceLiveTableRegistrar
- Parameters:
liveTable
- The table to add
-
removeTable
Description copied from interface:LiveTableRegistrar
Remove a table from this registrar.- Specified by:
removeTable
in interfaceLiveTableRegistrar
- Parameters:
liveTable
- The table to remove
-
requestRefresh
- Specified by:
requestRefresh
in interfaceLiveTableRegistrar
-
maybeRefreshTable
- Specified by:
maybeRefreshTable
in interfaceLiveTableRegistrar
-
destroy
public void destroy()Description copied from class:ReferenceCountedLivenessNode
Attempt to release (destructively when necessary) resources held by this object. This may render the object unusable for subsequent operations. Implementations should be sure to call super.destroy().
This is intended to only ever be used as a side effect of decreasing the reference count to 0.
- Overrides:
destroy
in classReferenceCountedLivenessNode
-