Class: Ramaze::Adapter::Lsws

Inherits:
Base show all
Defined in:
lib/ramaze/adapter/lsws.rb

Overview

Our Lsws adapter acts as wrapper for the Rack::Handler::LSWS.

Class Method Summary collapse

Methods inherited from Base

before_call, call, join, respond, shutdown, start

Class Method Details

.startup(host = nil, port = nil) ⇒ Object

start Lsws in a new thread, host and port parameter are only taken to make it compatible with other adapters but have no influence and can be omitted



14
15
16
# File 'lib/ramaze/adapter/lsws.rb', line 14

def self.startup(host = nil, port = nil)
  Thread.new{ Rack::Handler::LSWS.run(self) }
end