Methods
A
D
I
N
S
V
Attributes
[R] added
[R] intercepted
[R] void_called
Class Public methods
new()
# File rails/actionwebservice/test/abstract_dispatcher.rb, line 81
def initialize
  @void_called = false
end
Instance Public methods
add(a, b)
# File rails/actionwebservice/test/abstract_dispatcher.rb, line 85
def add(a, b)
  @added = a + b
end
do_intercept(name, args)
# File rails/actionwebservice/test/abstract_dispatcher.rb, line 103
def do_intercept(name, args)
  [false, "permission denied"]
end
interceptee()
# File rails/actionwebservice/test/abstract_dispatcher.rb, line 89
def interceptee
  @intercepted = false
end
struct_return()
# File rails/actionwebservice/test/abstract_dispatcher.rb, line 93
def struct_return
  n1 = Node.new('id' => 1, 'name' => 'node1', 'description' => 'Node 1')
  n2 = Node.new('id' => 2, 'name' => 'node2', 'description' => 'Node 2')
  [n1, n2]
end
void(*args)
# File rails/actionwebservice/test/abstract_dispatcher.rb, line 99
def void(*args)
  @void_called = args
end