Does anyone have some example code for building a reconnecting PB client?<br><br>This is what I have now:<br><br>from twisted.spread import pb<br>&nbsp;&nbsp;&nbsp; from twisted.internet import reactor<br>&nbsp;&nbsp;&nbsp; from twisted.python import util
<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; events = pb.PBClientFactory()<br>&nbsp;&nbsp;&nbsp; reactor.connectTCP(&quot;localhost&quot;, 8789, events)<br>&nbsp;&nbsp;&nbsp; queue = events.getRootObject()<br>