Package buildbot :: Package status :: Module words :: Class IRC
[frames] | no frames]

Class IRC

source code

                     base.StatusReceiver --+    
                                           |    
 twisted.application.service.Service --+   |    
                                       |   |    
twisted.application.service.MultiService --+    
                                           |    
                    util.ComparableMixin --+    
                                           |    
             base.StatusReceiverMultiService --+
                                               |
                                              IRC

Instance Methods
 
__init__(self, host, nick, channels, port=6667, allowForce=False, categories=None, password=None, notify_events={}, noticeOnChannel=False, showBlameList=True, useSSL=False) source code
 
setServiceParent(self, parent) source code
 
stopService(self) source code
 
__provides__(...)
Special descriptor for class __provides__

Inherited from base.StatusReceiver: __providedBy__, buildETAUpdate, buildFinished, buildStarted, builderAdded, builderChangedState, builderRemoved, buildsetSubmitted, changeAdded, logChunk, logFinished, logStarted, requestCancelled, requestSubmitted, slaveConnected, slaveDisconnected, stepETAUpdate, stepFinished, stepStarted, stepText2Changed, stepTextChanged

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

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

Inherited from util.ComparableMixin: __cmp__, __hash__

Class Variables
  in_test_harness = False
  compare_attrs = ['host', 'port', 'nick', 'password', 'channels...
  __implemented__ = <implementedBy buildbot.status.words.IRC>

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

Method Details

__init__(self, host, nick, channels, port=6667, allowForce=False, categories=None, password=None, notify_events={}, noticeOnChannel=False, showBlameList=True, useSSL=False)
(Constructor)

source code 
Overrides: twisted.application.service.MultiService.__init__

setServiceParent(self, parent)

source code 
Overrides: twisted.application.service.Service.setServiceParent

stopService(self)

source code 
Overrides: twisted.application.service.Service.stopService

__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.

For example:

  >>> from zope.interface import Interface
  >>> class IFooFactory(Interface):
  ...     pass
  >>> class IFoo(Interface):
  ...     pass
  >>> class C(object):
  ...     implements(IFoo)
  ...     classProvides(IFooFactory)
  >>> [i.getName() for i in C.__provides__]
  ['IFooFactory']

  >>> [i.getName() for i in C().__provides__]
  ['IFoo']

Overrides: util.ComparableMixin.__provides__

Class Variable Details

compare_attrs

Value:
['host',
 'port',
 'nick',
 'password',
 'channels',
 'allowForce',
 'useSSL',
 'categories']