public class SyncTokenService extends AbstractServiceWithBackgroundCheck implements ClusterSyncService
Modifier and Type | Field and Description |
---|---|
protected ClusterSyncHistory |
clusterSyncHistory |
protected DiscoveryLiteConfig |
commonsConfig |
protected ResourceResolverFactory |
resourceResolverFactory |
protected SlingSettingsService |
settingsService |
backgroundCheckRunnable, logger, slingId
Constructor and Description |
---|
SyncTokenService() |
Modifier and Type | Method and Description |
---|---|
protected void |
activate() |
void |
cancelSync() |
ClusterSyncHistory |
getClusterSyncHistory() |
protected ResourceResolver |
getResourceResolver()
Get or create a ResourceResolver
|
void |
setConsistencyHistory(ClusterSyncHistory consistencyHistory) |
void |
sync(BaseTopologyView view,
java.lang.Runnable callback)
Starts the synchronization process and calls the provided
callback upon completion.
|
protected void |
syncToken(BaseTopologyView view,
java.lang.Runnable callback) |
static SyncTokenService |
testConstructor(DiscoveryLiteConfig commonsConfig,
ResourceResolverFactory resourceResolverFactory,
SlingSettingsService settingsService) |
static SyncTokenService |
testConstructorAndActivate(DiscoveryLiteConfig commonsConfig,
ResourceResolverFactory resourceResolverFactory,
SlingSettingsService settingsService) |
cancelPreviousBackgroundCheck, startBackgroundCheck, triggerBackgroundCheck
protected DiscoveryLiteConfig commonsConfig
protected ResourceResolverFactory resourceResolverFactory
protected SlingSettingsService settingsService
protected ClusterSyncHistory clusterSyncHistory
public static SyncTokenService testConstructorAndActivate(DiscoveryLiteConfig commonsConfig, ResourceResolverFactory resourceResolverFactory, SlingSettingsService settingsService)
public static SyncTokenService testConstructor(DiscoveryLiteConfig commonsConfig, ResourceResolverFactory resourceResolverFactory, SlingSettingsService settingsService)
protected void activate()
public void setConsistencyHistory(ClusterSyncHistory consistencyHistory)
public ClusterSyncHistory getClusterSyncHistory()
protected ResourceResolver getResourceResolver() throws LoginException
LoginException
public void cancelSync()
cancelSync
in interface ClusterSyncService
public void sync(BaseTopologyView view, java.lang.Runnable callback)
ClusterSyncService
sync() is not thread-safe and should not be invoked concurrently.
If sync() gets called before a previous invocation finished, that previous invocation will be discarded, ie the callback of the previous invocation will no longer be called.
The synchronization process consists of making sure that the repository has processed any potential backlog of instances that are no longer part of the provided, new view. Plus it writes a 'sync-token' to a well-defined location, with all peers doing the same, and upon seeing all other sync-tokens declares successful completion - at which point it calls the callback.run().
sync
in interface ClusterSyncService
view
- the view which all instances in the local cluster
should agree on having seencallback
- the runnable which should be called after
successful syncingprotected void syncToken(BaseTopologyView view, java.lang.Runnable callback)
Copyright © 2022 The Apache Software Foundation. All rights reserved.