summaryrefslogtreecommitdiff
path: root/sample/timeout.rb
blob: 8d25d72a76904ae2bd016264f1fb3aa55912a0ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
require 'timeout'

def progress(n = 5)
  n.times {|i| print i; STDOUT.flush; sleep 1; i+= 1}
  puts "never reach"
end

p timeout(5) {
  45
}
p timeout(5, Timeout::Error) {
  45
}
p timeout(nil) {
  54
}
p timeout(0) {
  54
}
begin
  timeout(5) {progress}
rescue => e
  puts e.message
end
begin
  timeout(3) {
    begin
      timeout(5) {progress}
    rescue => e
      puts "never reach"
    end
  }
rescue => e
  puts e.message
end
class MyTimeout < StandardError
end
begin
  timeout(2, MyTimeout) {progress}
rescue MyTimeout => e
  puts e.message
end