Class: HttpServerActionHelper::HttpServer

Inherits:
GeneralServer show all
Defined in:
lib/action/module/httpserver_action.rb

Constant Summary

Constants inherited from GeneralServer

GeneralServer::DEFAULT_HOST

Instance Attribute Summary

Attributes inherited from GeneralServer

#audit, #debug, #host, #maxConnections, #port, #stdlog

Instance Method Summary collapse

Methods inherited from GeneralServer

#connections, in_service?, #join, #shutdown, #start, stop, #stop, #stopped?

Constructor Details

#initialize(port, host = DEFAULT_HOST, maxConnections = 4, stdlog = $stdout, audit = false, debug = false) ⇒ HttpServer

Returns a new instance of HttpServer.



191
192
193
194
# File 'lib/action/module/httpserver_action.rb', line 191

def initialize(port, host = DEFAULT_HOST, maxConnections = 4, 
               stdlog = $stdout, audit = false, debug = false)
  super(port, host, maxConnections, stdlog, audit, debug)
end