Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

vistahigherlearning / logstash   deb

Repository URL to install this package:

/ opt / logstash / vendor / jruby / lib / ruby / shared / fiber.rb

##
# Extensions to Fiber. In JRuby, these are all still defined in the normal
# Fiber class, so we alias them to the right names here.
#
class Fiber
  class << self
    alias current __current__
  end
  
  alias transfer __transfer__
  alias alive? __alive__
end