Sha256: a8be03ad17f50e32853ceb0d6cd44e6a0f97063a2a4fcfae74d0051da67b1ace

Contents?: true

Size: 727 Bytes

Versions: 5

Compression:

Stored size: 727 Bytes

Contents

#!/usr/bin/env ruby

$LOAD_PATH << File.expand_path("../../lib", __dir__)

require 'set'

require 'async/reactor'
require 'async/io/host_endpoint'
require 'async/io/protocol/line'

class Server
	def initialize
		@connections = []
	end
	
	def run(endpoint)
		Async do |task|
			task.async do |subtask|
				while true
					subtask.sleep 10
					puts "Connection count: #{@connections.size}"
				end
			end
				
			
			endpoint.accept do |peer|
				stream = Async::IO::Stream.new(peer)
				
				@connections << stream
			end
		end
	end
end

Async.logger.level = Logger::INFO
Async.logger.info("Starting server...")
server = Server.new

endpoint = Async::IO::Endpoint.parse(ARGV.pop || "tcp://localhost:7234")
server.run(endpoint)

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
async-io-1.27.2 examples/millions/server.rb
async-io-1.27.1 examples/millions/server.rb
async-io-1.27.0 examples/millions/server.rb
async-io-1.26.0 examples/millions/server.rb
async-io-1.25.0 examples/millions/server.rb