| Trees | Indices | Help | 
        
  | 
  
|---|
| 
       | 
  
| Instance Methods | |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
      
  | 
  |||
| Class Variables | |
        debug = False
     | 
  |
        interrupted = False
     | 
  |
        running = False
     | 
  |
        __implemented__ = <implementedBy buildslave.commands.base.Comm
     | 
  |
| Method Details | 
  
 Start the command. This method should return a Deferred that will fire when the command has completed. The Deferred's argument will be ignored. This method should be overridden by subclasses.  | 
  
 Override this in a subclass to allow commands to be interrupted. May be called multiple times, test and set self.interrupted=True if this matters.  | 
  
 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']  | 
| Class Variable Details | 
  __implemented__
  | 
| Trees | Indices | Help | 
        
  | 
  
|---|
| Generated by Epydoc 3.0.1 on Sun Jul 17 13:45:28 2011 | http://epydoc.sourceforge.net |