Package omero :: Package util :: Module concurrency :: Class AtExitEvent
[hide private]
[frames] | no frames]

Class AtExitEvent

source code


threading.Event extension which provides an additional method setAtExit() which sets "atexit" to true.

This class was introduced in 4.2.1 to work around issue #3260 in which logging from background threads produced error messages.

Instance Methods [hide private]
 
__init__(self, verbose=None, name="Unknown")
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
setAtExit(self) source code
 
__repr__(self)
repr(x)
source code

Inherited from threading._Event: clear, isSet, is_set, set, wait

Inherited from threading._Verbose (private): _note

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

Class Variables [hide private]
  name = property(lambda self: self.__name)
  atexit = property(lambda self: self.__atexit)
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, verbose=None, name="Unknown")
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)

__repr__(self)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)