Package gofer :: Package agent :: Module whiteboard :: Class Whiteboard
[hide private]
[frames] | no frames]

Class Whiteboard

source code

object --+
         |
        Whiteboard

Provides a dict-like object used to publish information to other plugins.

Nested Classes [hide private]
  __metaclass__
Singleton metaclass usage: __metaclass__ = Singleton
Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
get(*args, **kwargs) source code
 
update(*args, **kwargs) source code
 
__getitem__(*args, **kwargs) source code
 
__setitem__(*args, **kwargs) source code
 
__repr__(*args, **kwargs)
repr(x)
source code
 
__str__(*args, **kwargs)
str(x)
source code

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

get(*args, **kwargs)

source code 
Decorators:
  • @synchronized

update(*args, **kwargs)

source code 
Decorators:
  • @synchronized

__getitem__(*args, **kwargs)
(Indexing operator)

source code 
Decorators:
  • @synchronized

__setitem__(*args, **kwargs)
(Index assignment operator)

source code 
Decorators:
  • @synchronized

__repr__(*args, **kwargs)
(Representation operator)

source code 

repr(x)

Decorators:
  • @synchronized
Overrides: object.__repr__
(inherited documentation)

__str__(*args, **kwargs)
(Informal representation operator)

source code 

str(x)

Decorators:
  • @synchronized
Overrides: object.__str__
(inherited documentation)