This is the master-side representative for a remote buildbot slave.
There is exactly one for each slave described in the config file (the
c['slaves'] list). When buildbots connect in (.attach), they get a
reference to this instance. The BotMaster object is stashed as the
.botmaster attribute. The BotMaster is also our '.parent' Service.
I represent a build slave -- a remote machine capable of running
builds. I am instantiated by the configuration file, and can be
subclassed to add extra functionality.
|
__init__(self,
name,
password,
max_builds=None,
notify_on_missing=[],
missing_timeout=3600,
properties={}) |
source code
|
|
|
update(self,
new)
Given a new BuildSlave, configure this one identically. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
updateSlaveStatus(self,
buildStarted=None,
buildFinished=None) |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_gracefulChanged(self,
graceful)
This is called when our graceful shutdown setting changes |
source code
|
|
|
|
Inherited from twisted.spread.pb.Avatar :
__providedBy__ ,
perspectiveMessageReceived
Inherited from twisted.application.service.MultiService :
__iter__ ,
addService ,
getServiceNamed ,
privilegedStartService ,
removeService ,
startService ,
stopService
Inherited from twisted.application.service.Service :
__getstate__ ,
disownServiceParent ,
setName ,
setServiceParent
|