Method: CloudI::API#forward_
- Defined in:
- lib/cloudi.rb
#forward_(request_type, name, request_info, request, timeout, priority, trans_id, pid) ⇒ Object
166 167 168 169 170 171 172 173 174 175 176 |
# File 'lib/cloudi.rb', line 166 def forward_(request_type, name, request_info, request, timeout, priority, trans_id, pid) case request_type when ASYNC forward_async(name, request_info, request, timeout, priority, trans_id, pid) when SYNC forward_sync(name, request_info, request, timeout, priority, trans_id, pid) end end |