Interface ISVNRepositoryPool
- All Known Implementing Classes:
DefaultSVNRepositoryPool
,SVNClientManager
A default implementation of the ISVNRepositoryPool interface - DefaultSVNRepositoryPool class - may cache the created SVNRepository objects in a common pool. Several threads may share that pool, but each thread is able only to retrieve those objects, that belong to it (were created in that thread).
- Since:
- 1.2
- Version:
- 1.3
- Author:
- TMate Software Ltd.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptioncreateRepository
(SVNURL url, boolean mayReuse) Creates a low-level SVN protocol driver to access a repository.void
dispose()
Disposes this pool.void
setAuthenticationManager
(ISVNAuthenticationManager authManager) Updates authentication manager instance referenced bySVNRepository
objects currently in the pool.void
setCanceller
(ISVNCanceller canceller) Updates canceller instance referenced bySVNRepository
objects currently in the pool.void
setDebugLog
(org.tmatesoft.svn.util.ISVNDebugLog log) Updates debug log instance referenced bySVNRepository
objects currently in the pool.void
shutdownConnections
(boolean shutdownAll) Deprecated.
-
Method Details
-
setAuthenticationManager
Updates authentication manager instance referenced bySVNRepository
objects currently in the pool.- Parameters:
authManager
- authentication manager instance
-
setCanceller
Updates canceller instance referenced bySVNRepository
objects currently in the pool.- Parameters:
canceller
- canceller instance
-
setDebugLog
void setDebugLog(org.tmatesoft.svn.util.ISVNDebugLog log) Updates debug log instance referenced bySVNRepository
objects currently in the pool.- Parameters:
log
- debug logger object
-
createRepository
Creates a low-level SVN protocol driver to access a repository.If
mayReuse
is true and the pool feature for caching SVNRepository objects is supported by the concrete implementation of this interface, then this method first tries to find an existing SVNRepository object in the pool of the current thread. If such an object is found that was created for the same protocol asurl
has, then resets this object to a newurl
and returns it back. Otherwise creates a new one, stores it in the thread's pool and returns back.If
mayReuse
is false, then creates a new object, that won't be reusable.- Parameters:
url
- a repository location to establish a connection with (will be the root directory for the working session)mayReuse
- If true then retrieves/creates a reusable object, otherwise creates a new unreusable one- Returns:
- a low-level API driver for direct interacting with a repository
- Throws:
SVNException
- ifurl
is malformed or there's no appropriate implementation for a protocol- See Also:
-
shutdownConnections
void shutdownConnections(boolean shutdownAll) Deprecated.usedispose()
method instead.Forces cached SVNRepository driver objects to close their socket connections.A default implementation DefaultSVNRepositoryPool is able to cache SVNRepository objects in a common pool shared between multiple threads. This method allows to close connections of all the cached objects.
- Parameters:
shutdownAll
- if true - closes connections of all the SVNRepository objects, if false - connections of only some part of SVNRepository objects (for example, those, that are not needed anymore)- See Also:
-
dispose
void dispose()Disposes this pool.- Since:
- 1.2.0
-
dispose()
method instead.