Package buildbot :: Package slave :: Module commands :: Class DummyCommand
[frames] | no frames]

Class DummyCommand

source code

Command --+
          |
         DummyCommand

I am a dummy no-op command that by default takes 5 seconds to complete. See buildbot.steps.dummy.RemoteDummy

Instance Methods
 
start(self)
Start the command.
source code
 
interrupt(self)
Override this in a subclass to allow commands to be interrupted.
source code
 
doStatus(self) source code
 
finished(self) source code

Inherited from Command: __init__, __providedBy__, commandComplete, doInterrupt, doStart, sendStatus, setup

Class Variables

Inherited from Command: __implemented__, __provides__, debug, interrupted, running

Method Details

start(self)

source code 

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.

Overrides: Command.start
(inherited documentation)

interrupt(self)

source code 

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.

Overrides: Command.interrupt
(inherited documentation)