Package buildslave :: Package commands :: Module fs :: Class RemoveDirectory
[frames] | no frames]

Class RemoveDirectory

source code

base.Command --+
               |
              RemoveDirectory

Instance Methods
 
setup(self, args)
Override this in a subclass to extract items from the args dict.
source code
 
start(*args, **kwargs)
Start the command.
source code
 
removeSingleDir(self, dirname) source code

Inherited from base.Command: __init__, __providedBy__, __provides__, doInterrupt, doStart, interrupt, sendStatus

Class Variables
  header = 'rmdir'

Inherited from base.Command: __implemented__, debug, interrupted, running

Method Details

setup(self, args)

source code 

Override this in a subclass to extract items from the args dict.

Overrides: base.Command.setup
(inherited documentation)

start(*args, **kwargs)

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.

Decorators:
  • @defer.deferredGenerator
Overrides: base.Command.start
(inherited documentation)