org.tmatesoft.svn.core.wc
public interface ISVNRepositoryPool
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).
Version: 1.1.1
See Also: DefaultSVNRepositoryPool
Method Summary | |
---|---|
SVNRepository | createRepository(SVNURL url, boolean mayReuse)
Creates a low-level SVN protocol driver to access a repository.
|
void | dispose() |
void | setAuthenticationManager(ISVNAuthenticationManager authManager)
Updates authentication manager instance referenced by SVNRepository objects
currently in the pool. |
void | setCanceller(ISVNCanceller canceller)
Updates canceller instance referenced by SVNRepository objects
currently in the pool. |
void | setDebugLog(ISVNDebugLog log)
Updates debug log instance referenced by SVNRepository objects
currently in the pool. |
void | shutdownConnections(boolean shutdownAll)
Forces cached SVNRepository driver objects to close their socket
connections.
|
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 as url
has, then resets this
object to a new url
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 if url
is malformed or there's
no appropriate implementation for a protocol
See Also: DefaultSVNRepositoryPool
Deprecated: use dispose 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)