Sha256: 0facef7d6ec7e5a2a95e972a284950f6daf053090c92e188e7c4e85cf12599cf

Contents?: true

Size: 1.62 KB

Versions: 30

Compression:

Stored size: 1.62 KB

Contents

# Copyright, 2018, by Samuel G. D. Williams. <http://www.codeotaku.com>
# 
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

module Async
	module Debug
		class Monitor
			def initialize(monitor, selector)
				@monitor = monitor
				@selector = selector
			end
			
			def close
				@selector.deregister(@monitor.io)
				@monitor.close
			end
			
			def method_missing(*args, &block)
				@monitor.send(*args)
			end
			
			def respond_to?(*args)
				@monitor.respond_to?(*args)
			end
			
			def inspect
				"\#<#{self.class} io=#{@monitor.io.inspect} interests=#{@monitor.interests.inspect} readiness=#{@monitor.readiness.inspect}>"
			end
		end
	end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
async-1.23.0 lib/async/debug/monitor.rb
async-1.22.2 lib/async/debug/monitor.rb
async-1.22.1 lib/async/debug/monitor.rb
async-1.22.0 lib/async/debug/monitor.rb
async-1.21.0 lib/async/debug/monitor.rb
async-1.20.1 lib/async/debug/monitor.rb
async-1.20.0 lib/async/debug/monitor.rb
async-1.19.0 lib/async/debug/monitor.rb
async-1.18.0 lib/async/debug/monitor.rb
async-1.17.1 lib/async/debug/monitor.rb
async-1.17.0 lib/async/debug/monitor.rb
async-1.16.0 lib/async/debug/monitor.rb
async-1.15.5 lib/async/debug/monitor.rb
async-1.15.4 lib/async/debug/monitor.rb
async-1.15.3 lib/async/debug/monitor.rb
async-1.15.2 lib/async/debug/monitor.rb
async-1.15.1 lib/async/debug/monitor.rb
async-1.15.0 lib/async/debug/monitor.rb
async-1.14.0 lib/async/debug/monitor.rb
async-1.13.1 lib/async/debug/monitor.rb