まつもと ゆきひろです
In message "[ruby-list:17254] Re: TCPserver の受付時間制限"
on 99/09/30, Tadashige Morii <m_tada / sx.miracle.ne.jp> writes:
| そんな感じなんですが、これってどこかに載ってますか?
| それと以下のようにエラーになるんですが。
|
|/usr/local/lib/ruby/1.4/timeout.rb:35: execution expired (TimeoutError)
| from th.rb:4:in `timeout'
| from th.rb:4
すいません。これ書いたの私ですが、使い方忘れてました。
こんな感じ。
require 'timeout'
begin
timeout(600) {
s = gs.accept
}
rescue TimeoutError
exit
end
..