Package org.eclipse.aether.internal.impl
Class DefaultSyncContextFactory
- java.lang.Object
-
- org.eclipse.aether.internal.impl.DefaultSyncContextFactory
-
- All Implemented Interfaces:
SyncContextFactory
@Named public class DefaultSyncContextFactory extends Object implements SyncContextFactory
A factory to create synchronization contexts. This default implementation actually does not provide any real synchronization but merely completes the repository system.
-
-
Constructor Summary
Constructors Constructor Description DefaultSyncContextFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SyncContext
newInstance(RepositorySystemSession session, boolean shared)
Creates a new synchronization context.
-
-
-
Constructor Detail
-
DefaultSyncContextFactory
public DefaultSyncContextFactory()
-
-
Method Detail
-
newInstance
public SyncContext newInstance(RepositorySystemSession session, boolean shared)
Description copied from interface:SyncContextFactory
Creates a new synchronization context.- Specified by:
newInstance
in interfaceSyncContextFactory
- Parameters:
session
- The repository session during which the context will be used, must not benull
.shared
- A flag indicating whether access to the artifacts/metadata associated with the new context can be shared among concurrent readers or whether access needs to be exclusive to the calling thread.- Returns:
- The synchronization context, never
null
. - See Also:
RepositorySystem.newSyncContext(RepositorySystemSession, boolean)
-
-