(self, ip)
| 258 | |
| 259 | @lock |
| 260 | def afterReconnecting(self, ip): |
| 261 | for plugin in self.plugins: |
| 262 | if plugin.isActivated(): |
| 263 | plugin.afterReconnecting(ip) |
| 264 | |
| 265 | self.dispatchEvent("afterReconnecting", ip) |
| 266 | |
| 267 | def startThread(self, function, *args, **kwargs): |
| 268 | t = HookThread(self.core.threadManager, function, args, kwargs) |
no test coverage detected