Methods
B
C
F
N
Class Public methods
new(&block)
# File actionpack/test/dispatch/executor_test.rb, line 5
def initialize(&block)
  @on_close = block
end
Instance Public methods
bar()
# File actionpack/test/dispatch/executor_test.rb, line 13
def bar
  "bar"
end
close()
# File actionpack/test/dispatch/executor_test.rb, line 17
def close
  @on_close.call if @on_close
end
foo()
# File actionpack/test/dispatch/executor_test.rb, line 9
def foo
  "foo"
end