Class IChangeSource
source code
zope.interface.Interface --+
|
IChangeSource
Object which feeds Change objects to the changemaster. When files or
directories are changed and the version control system provides some kind
of notification, this object should turn it into a Change object and pass
it through:
self.changemaster.addChange(change)
|
__bases__ = ( <InterfaceClass zope.interface.Interface>)
|
|
__identifier__ = ' buildbot.interfaces.IChangeSource '
|
|
__iro__ = ( <InterfaceClass buildbot.interfaces.IChangeSource>, ...
|
|
__name__ = ' IChangeSource '
|
|
__sro__ = ( <InterfaceClass buildbot.interfaces.IChangeSource>, ...
|
|
dependents = <WeakKeyDictionary at 41510312>
|
Called when the buildmaster starts. Can be used to establish
connections to VC daemons or begin polling.
|
Called when the buildmaster shuts down. Connections should be
terminated, polling timers should be canceled.
|
Should return a string which briefly describes this source. This
string will be displayed in an HTML status page.
|
__iro__
- Value:
( <InterfaceClass buildbot.interfaces.IChangeSource>,
<InterfaceClass zope.interface.Interface>)
|
|
__sro__
- Value:
( <InterfaceClass buildbot.interfaces.IChangeSource>,
<InterfaceClass zope.interface.Interface>)
|
|