Sha256: b071cb9e8913a343cb8c7ac0eebe5c33f40f50d1679ef8419cc939f4e44bacf3

Contents?: true

Size: 715 Bytes

Versions: 4

Compression:

Stored size: 715 Bytes

Contents

# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2017-2024, 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.21.0 lib/async/reactor.rb
async-2.20.0 lib/async/reactor.rb
async-2.19.0 lib/async/reactor.rb
async-2.18.0 lib/async/reactor.rb