Ruby 1.8.7 リファレンスマニュアル > ライブラリ一覧 > webrick/serverライブラリ > WEBrick::GenericServerクラス

class WEBrick::GenericServer

クラスの継承リスト: WEBrick::GenericServer < Object < Kernel

要約

サーバの一般的な機能を提供するクラスです。 WEBrick::HTTPServer のスーパークラスです。

特異メソッド

定義 説明
new(config={}, default=WEBrick::Config::General)

GenericServer オブジェクトを生成して返します。

new(config={}, default=WEBrick::Config::General)

config で有効な項目が増える。以下は増える項目とそのデフォルト値。

webrick/ssl

インスタンスメソッド

定義 説明
self[key] -> object

self.config[key] と同値。

config -> Hash

サーバの設定を保存したハッシュを返す。

listen(address, port) -> [TCPServer]

与えられたアドレスとポートで TCPServer オブジェクトを生成し listeners に加えます。 WEBrick::GenericServer#listeners を返します。

listeners -> [TCPServer]

listen している TCPServer オブジェクトの配列を返します。

logger -> WEBrick::Log

生成する時に指定された、自身をロギングする WEBrick::Log のインスタンスを返します。

run(sock) -> ()

クライアントと接続された TCPSocket オブジェクトを引数として呼ばれ、 具体的な処理を行います。 WEBrick::GenericServer のサブクラスはこのメソッドを適切に再定義しなければいけません。

shutdown -> ()

WEBrick::GenericServer#stop を呼び、全ての listeners を close します。

ssl_context

サーバが保持する OpenSSL::SSL::SSLContext オブジェクトを返す。

webrick/ssl
start -> ()
start {|soc| ... } -> ()

サーバをスタートします。

status -> Symbol

現在のサーバのステータスを Symbol オブジェクトで返します。 値は :Running(活動中), :Shutdown(終了処理中), :Stop(完全に停止) のいずれかです。

stop -> ()

サーバを停止します。

tokens -> SizedQueue

MaxClient の設定のために使われる SizedQueue オブジェクトを返します。 SizedQueue オブジェクトのサイズは現在受け付けることのできるクライアントの数です。

継承したメソッド

== === =~ __id__ __send__ _dump class clone dclone display enum_for eql? equal? extend freeze frozen? hash initialize initialize_copy inspect instance_eval instance_exec instance_of? instance_variable_defined? instance_variable_get instance_variable_set instance_variables is_a? marshal_dump marshal_load method method_missing methods nil? pretty_inspect pretty_print pretty_print_cycle pretty_print_inspect pretty_print_instance_variables private_methods protected_methods public_methods remove_instance_variable respond_to? singleton_method_added singleton_method_removed singleton_method_undefined singleton_methods taint tainted? tap to_a to_ary to_hash to_int to_io to_proc to_regexp to_s to_str to_yaml to_yaml_properties to_yaml_style untaint