Package x2go :: Module mimebox :: Class X2GoMIMEboxJob
[frames] | no frames]

type X2GoMIMEboxJob

source code

        object --+        
                 |        
threading._Verbose --+    
                     |    
      threading.Thread --+
                         |
                        X2GoMIMEboxJob

For each X2Go MIME box job we create a sub-thread that let's the MIME box job be processed in the background.

As a handler for this class the function x2go_mimeboxjob_handler() is used.

Instance Methods
 
__init__(self, **kwargs)
Construct the X2Go MIME box job thread...
source code

Inherited from threading.Thread: __repr__, getName, isAlive, isDaemon, is_alive, join, run, setDaemon, setName, start

Properties

Inherited from threading.Thread: daemon, ident, name

Method Details

__init__(self, **kwargs)
(Constructor)

source code 

Construct the X2Go MIME box job thread...

All parameters (**kwargs) are passed through to the constructor of threading.Thread().

Overrides: threading._Verbose.__init__