Method: BasicObject#async
- Defined in:
- lib/fibril/basic_object.rb
#async ⇒ Object
An asynchronous proxy. Executes any methods invoked via proxy on target in a separate thread
9 10 11 |
# File 'lib/fibril/basic_object.rb', line 9 def async @async_proxy ||= ::Fibril::AsyncProxy.new(self) end |