Package brisa :: Package core :: Module webserver :: Class PasteAdapter
[hide private]
[frames] | no frames]

Class PasteAdapter

source code

      object --+    
               |    
AdapterInterface --+
                   |
                  PasteAdapter

Paste WSGI server adapter.

Instance Methods [hide private]
 
setup(self, server_name, host, port, app_callback)
Setups the adapter.
source code
 
start(self)
Starts the WSGI server.
source code
 
stop(self)
Stops the WSGI server.
source code

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

Class Methods [hide private]
 
is_available(cls)
Returns True if the adapter is available on the system.
source code
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

setup(self, server_name, host, port, app_callback)

source code 

Setups the adapter.

Overrides: AdapterInterface.setup
(inherited documentation)

start(self)

source code 

Starts the WSGI server.

Overrides: AdapterInterface.start
(inherited documentation)

stop(self)

source code 

Stops the WSGI server.

Overrides: AdapterInterface.stop
(inherited documentation)

is_available(cls)
Class Method

source code 

Returns True if the adapter is available on the system.

Overrides: AdapterInterface.is_available
(inherited documentation)