Package gluon :: Module rocket :: Class Rocket
[hide private]
[frames] | no frames]

Class Rocket

source code

object --+
         |
        Rocket

The Rocket class is responsible for handling threads and accepting and dispatching connections.

Instance Methods [hide private]
 
__init__(self, interfaces=('127.0.0.1', 8000), method='wsgi', app_info=None, min_threads=None, max_threads=None, queue_size=None, timeout=600, handle_signals=True)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
_sigterm(self, signum, frame) source code
 
_sighup(self, signum, frame) source code
 
start(self, background=False) source code
 
stop(self, stoplogging=False) source code
 
restart(self) source code

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, interfaces=('127.0.0.1', 8000), method='wsgi', app_info=None, min_threads=None, max_threads=None, queue_size=None, timeout=600, handle_signals=True)
(Constructor)

source code 

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

Overrides: object.__init__
(inherited documentation)