Skip to content

Instantly share code, notes, and snippets.

@fbernier
Created August 9, 2012 18:48
Show Gist options
  • Save fbernier/3307057 to your computer and use it in GitHub Desktop.
Save fbernier/3307057 to your computer and use it in GitHub Desktop.
any reason to break?
require 'celluloid'
class MyClass
include Celluloid
def do_some
'yo'
end
end
a = Myclass.new
future = Celluloid::Future.new do
a.do_some
end
p future.value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment