Class ReadOnlyLocalTableLocationProvider
- All Implemented Interfaces:
com.fishlib.base.log.LogOutputAppendable,TableKey,TableLocationProvider,NamedImplementation
public class ReadOnlyLocalTableLocationProvider extends AbstractTableLocationProvider
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.illumon.iris.db.v2.locations.TableKey
TableKey.KeyedObjectKeyImpl<VALUE_TYPE>, TableKey.SelfKeyedObjectKeyImpl<VALUE_TYPE extends TableKey>Nested classes/interfaces inherited from interface com.illumon.iris.db.v2.locations.TableLocationProvider
TableLocationProvider.Listener -
Field Summary
-
Constructor Summary
Constructors Constructor Description ReadOnlyLocalTableLocationProvider(TableKey tableKey, com.illumon.iris.db.v2.locations.local.LocalTableLocationProvider.Scanner scanner, boolean supportsSubscriptions, TableDataRefreshService refreshService) -
Method Summary
Modifier and Type Method Description protected voidactivateUnderlyingDataSource()Refresh and activate update pushing from the implementing class.protected voiddeactivateUnderlyingDataSource()Deactivate pushed updates from the implementing class.StringgetImplementationName()Get a name for the implementing class.protected TableLocationmakeTableLocation(TableLocationKey locationKey)Make a new implementation-appropriate TableLocation from the supplied key.protected <T> booleanmatchSubscriptionToken(T token)Verify that a notification pertains to a currently-active subscription.voidrefresh()Initialize or refresh state information about the list of existing locations.Methods inherited from class com.illumon.iris.db.v2.locations.AbstractTableLocationProvider
deliverInitialSnapshot, doInitialization, ensureInitialized, getLog, getNamespace, getTableKey, getTableLocationIfPresent, getTableLocations, getTableName, getTableType, handleTableLocationKey, handleTableLocationKey, isInitialized, mark, maybeReloadLocation, refreshAndRescan, removeTableLocationKey, removeUnvisited, setInitialized, toStringMethods inherited from class com.illumon.iris.db.v2.locations.SubscriptionAggregator
activationFailed, activationSuccessful, checkHasSubscribers, postActivationHook, subscribe, supportsSubscriptions, unsubscribeMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface com.illumon.iris.db.v2.locations.TableKey
append, asTableIdentifier, toStringDetailed, toStringHelper, writeToMethods inherited from interface com.illumon.iris.db.v2.locations.TableLocationProvider
getName, getTableLocation, getTableLocation, refreshAndRescan, subscribe, supportsSubscriptions, unsubscribe
-
Constructor Details
-
ReadOnlyLocalTableLocationProvider
public ReadOnlyLocalTableLocationProvider(@NotNull TableKey tableKey, @NotNull com.illumon.iris.db.v2.locations.local.LocalTableLocationProvider.Scanner scanner, boolean supportsSubscriptions, @NotNull TableDataRefreshService refreshService)
-
-
Method Details
-
getImplementationName
Description copied from interface:NamedImplementationGet a name for the implementing class. Useful for abstract classes that implement
LogOutputAppendableor overridetoString.The default implementation is correct, but not suitable for high-frequency usage.
- Returns:
- A name for the implementing class
-
refresh
public void refresh()Description copied from interface:TableLocationProviderInitialize or refresh state information about the list of existing locations. -
activateUnderlyingDataSource
protected void activateUnderlyingDataSource()Description copied from class:SubscriptionAggregatorRefresh and activate update pushing from the implementing class.
If the implementation will deliver notifications in a different thread than the one that calls this method, then this method must be asynchronous - that is, it must not block pending delivery of results. This requirement holds even if that other thread has nothing to do with the initial activation request!
Listeners should guard against duplicate notifications, especially if the implementation delivers synchronous notifications.
The implementation should call activationSuccessful() when done activating and delivering initial refresh results, unless activationFailed() was called instead.
Must be called under the subscription lock.
- Overrides:
activateUnderlyingDataSourcein classSubscriptionAggregator<TableLocationProvider.Listener>
-
deactivateUnderlyingDataSource
protected void deactivateUnderlyingDataSource()Description copied from class:SubscriptionAggregatorDeactivate pushed updates from the implementing class. Must be called under the subscription lock.- Overrides:
deactivateUnderlyingDataSourcein classSubscriptionAggregator<TableLocationProvider.Listener>
-
matchSubscriptionToken
protected <T> boolean matchSubscriptionToken(T token)Description copied from class:SubscriptionAggregatorVerify that a notification pertains to a currently-active subscription. Must be called under the subscription lock.- Overrides:
matchSubscriptionTokenin classSubscriptionAggregator<TableLocationProvider.Listener>- Parameters:
token- A subscription-related object that the subclass can use to match a notification- Returns:
- True iff notification delivery should proceed
-
makeTableLocation
Description copied from class:AbstractTableLocationProviderMake a new implementation-appropriate TableLocation from the supplied key.- Specified by:
makeTableLocationin classAbstractTableLocationProvider- Parameters:
locationKey- The table location key- Returns:
- The new TableLocation
-