Class: Granache::Http::Configuration
- Inherits:
-
Grenache::Configuration
- Object
- Grenache::Configuration
- Granache::Http::Configuration
- Defined in:
- lib/grenache/http/configurable.rb
Instance Attribute Summary collapse
-
#thin_threaded ⇒ Object
thin server.
-
#thin_threadpool_size ⇒ Object
thin server.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
8 9 10 11 12 |
# File 'lib/grenache/http/configurable.rb', line 8 def initialize set_bool :thin_threaded, params, false set_val :thin_threadpool_size, params, 0 super end |
Instance Attribute Details
#thin_threaded ⇒ Object
thin server
6 7 8 |
# File 'lib/grenache/http/configurable.rb', line 6 def thin_threaded @thin_threaded end |
#thin_threadpool_size ⇒ Object
thin server
6 7 8 |
# File 'lib/grenache/http/configurable.rb', line 6 def thin_threadpool_size @thin_threadpool_size end |