Sha256: 1024c3bf2c5a3beee26b0cc583ad089e1a490f4742f7c0d76d3bd0a06b486c27

Contents?: true

Size: 1.87 KB

Versions: 3

Compression:

Stored size: 1.87 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.

require_relative 'terminator'

require 'async/reactor'

module Async
	module Container
		class Controller
			def initialize
				@attached = []
			end
			
			def attach(controller = nil, &block)
				if controller
					@attached << controller
				end
				
				if block_given?
					@attached << Terminator.new(&block)
				end
				
				return self
			end
			
			def async(**options, &block)
				spawn(**options) do |instance|
					begin
						Async::Reactor.run(instance, &block)
					rescue Interrupt
						# Graceful exit.
					end
				end
			end
			
			def run(count: Container.processor_count, **options, &block)
				count.times do
					async(**options, &block)
				end
				
				return self
			end
			
			def stop(graceful = true)
				@attached.each(&:stop)
			end
		end
	end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
async-container-0.14.1 lib/async/container/controller.rb
async-container-0.14.0 lib/async/container/controller.rb
async-container-0.13.0 lib/async/container/controller.rb