作者:snail | 来源:互联网 | 2023-09-18 19:31
本文整理了Java中org.tmatesoft.svn.core.io.SVNRepository.addConnectionListener()方法的一些代码示例,展
本文整理了Java中org.tmatesoft.svn.core.io.SVNRepository.addConnectionListener()
方法的一些代码示例,展示了SVNRepository.addConnectionListener()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。SVNRepository.addConnectionListener()
方法的具体详情如下:
包路径:org.tmatesoft.svn.core.io.SVNRepository
类名称:SVNRepository
方法名:addConnectionListener
SVNRepository.addConnectionListener介绍
[英]Adds a connection listener to this object. There can be more than one connection listeners added to a single SVNRepository
object.
All the provided listeners will be notified each time by this object about a new connection which it's opening.
Note: listeners are not notified in case of the file:///
repository access protocol.
[中]将连接侦听器添加到此对象。可以向单个SVNRepository
对象添加多个连接侦听器。
该对象每次都会通知所有提供的侦听器它正在打开的新连接。
注意:如果使用file:///
存储库访问协议,则不会通知侦听器。
代码示例
代码示例来源:origin: org.jvnet.hudson.svnkit/svnkit
repos.addConnectionListener(this);
代码示例来源:origin: org.codehaus.jtstand/jtstand-svnkit
repos.addConnectionListener(this);
代码示例来源:origin: org.tmatesoft.svnkit/svnkit
repos.addConnectionListener(this);