Interface ISVNRepositoryPool

All Known Implementing Classes:
DefaultSVNRepositoryPool, SVNClientManager

public interface ISVNRepositoryPool
The ISVNRepositoryPool interface is used by SVN*Client objects to create a low-level SVN protocol driver that allows them to directly work with a repository.

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
See Also:
  • Method Details

    • setAuthenticationManager

      void setAuthenticationManager(ISVNAuthenticationManager authManager)
      Updates authentication manager instance referenced by SVNRepository objects currently in the pool.
      Parameters:
      authManager - authentication manager instance
    • setCanceller

      void setCanceller(ISVNCanceller canceller)
      Updates canceller instance referenced by SVNRepository objects currently in the pool.
      Parameters:
      canceller - canceller instance
    • setDebugLog

      void setDebugLog(ISVNDebugLog log)
      Updates debug log instance referenced by SVNRepository objects currently in the pool.
      Parameters:
      log - debug logger object
    • createRepository

      SVNRepository createRepository(SVNURL url, boolean mayReuse) throws SVNException
      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 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:
    • shutdownConnections

      void shutdownConnections(boolean shutdownAll)
      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)
      See Also:
    • dispose

      void dispose()
      Disposes this pool.
      Since:
      1.2.0