Package buildbot :: Package schedulers :: Module timed :: Class NightlyBase
[frames] | no frames]

Class NightlyBase

source code

 twisted.application.service.Service --+            
                                       |            
twisted.application.service.MultiService --+        
                                           |        
                    util.ComparableMixin --+        
                                           |        
                              object --+   |        
                                       |   |        
                   util.state.StateMixin --+        
                                           |        
                          base.BaseScheduler --+    
                                               |    
                                           Timed --+
                                                   |
                                                  NightlyBase
Known Subclasses:

Instance Methods
 
__init__(self, name, builderNames, minute=0, hour='*', dayOfMonth='*', month='*', dayOfWeek='*', properties={}, codebases={'': {}})
Initialize a Scheduler.
source code
 
getNextBuildTime(self, lastActuated)
Called by to calculate the next time to actuate a BuildSet.
source code
 
__provides__(...)
Special descriptor for class __provides__

Inherited from Timed: getPendingBuildTimes, now, scheduleNextBuild, startBuild, startService, startTimedSchedulerService, stopService

Inherited from base.BaseScheduler: addBuildsetForChanges, addBuildsetForLatest, addBuildsetForSourceStamp, addBuildsetForSourceStampDetails, addBuildsetForSourceStampSetDetails, findNewSchedulerInstance, gotChange, listBuilderNames, startConsumingChanges

Inherited from twisted.application.service.MultiService: __iter__, addService, getServiceNamed, privilegedStartService, removeService

Inherited from twisted.application.service.Service: __getstate__, __providedBy__, disownServiceParent, setName, setServiceParent

Inherited from util.ComparableMixin: __cmp__, __hash__

Inherited from util.state.StateMixin: getState, setState

Inherited from object: __delattr__, __format__, __getattribute__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables
  compare_attrs = ('name', 'builderNames', 'properties', 'codeba...
  __implemented__ = <implementedBy buildbot.schedulers.timed.Nig...

Inherited from base.BaseScheduler: DefaultCodebases

Inherited from twisted.application.service.Service: parent, running

Instance Variables

Inherited from base.BaseScheduler: builderNames, name, properties

Properties

Inherited from object: __class__

Method Details

__init__(self, name, builderNames, minute=0, hour='*', dayOfMonth='*', month='*', dayOfWeek='*', properties={}, codebases={'': {}})
(Constructor)

source code 

Initialize a Scheduler.

Parameters:
  • name - name of this scheduler (used as a key for state)
  • builderNames - list of builders this scheduler may start
  • properties - properties to add to builds triggered by this scheduler
  • codebases - codebases that are necessary to process the changes
  • consumeChanges - true if this scheduler wishes to be informed about the addition of new changes. Defaults to False. This should be passed explicitly from subclasses to indicate their interest in consuming changes.
Overrides: object.__init__
(inherited documentation)

getNextBuildTime(self, lastActuated)

source code 

Called by to calculate the next time to actuate a BuildSet. Override in subclasses. To trigger a fresh call to this method, use rescheduleNextBuild.

Parameters:
  • lastActuation - the time of the last actuation, or None for never
Returns:
a Deferred firing with the next time a build should occur (in the future), or None for never.
Overrides: Timed.getNextBuildTime
(inherited documentation)

__provides__(...)

 

Special descriptor for class __provides__

The descriptor caches the implementedBy info, so that we can get declarations for objects without instance-specific interfaces a bit quicker.

Overrides: util.state.StateMixin.__provides__

Class Variable Details

compare_attrs

Value:
('name',
 'builderNames',
 'properties',
 'codebases',
 'minute',
 'hour',
 'dayOfMonth',
 'month',
...

__implemented__

Value:
<implementedBy buildbot.schedulers.timed.NightlyBase>