Sha256: 67f4195d17c4787d190a8214d4fa5aa0423e4b9a2fc950168c2b8195f64e8876

Contents?: true

Size: 715 Bytes

Versions: 4

Compression:

Stored size: 715 Bytes

Contents

# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2017-2022, by Samuel Williams.
# Copyright, 2017, by Kent Gruber.
# Copyright, 2018, by Sokolov Yura.

require_relative 'scheduler'

module Async
	# A wrapper around the the scheduler which binds it to the current thread automatically.
	class Reactor < Scheduler
		# @deprecated Replaced by {Kernel::Async}.
		def self.run(...)
			Async(...)
		end
		
		# Initialize the reactor and assign it to the current Fiber scheduler.
		def initialize(...)
			super
			
			Fiber.set_scheduler(self)
		end
		
		# Close the reactor and remove it from the current Fiber scheduler.
		def scheduler_close
			self.close
		end
		
		public :sleep
	end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
async-2.14.2 lib/async/reactor.rb
async-2.14.1 lib/async/reactor.rb
async-2.14.0 lib/async/reactor.rb
async-2.13.0 lib/async/reactor.rb