Sha256: 6c4af251cf34505397b4510ccd4eebf68b0205fd384c8a7d4fa4930d7af5771e
Contents?: true
Size: 414 Bytes
Versions: 1
Compression:
Stored size: 414 Bytes
Contents
module Backport module Server module Connectable def tick clients.each do |client| input = client.read client.sending input unless input.nil? end end def starting clients.map(&:run) end def stopping clients.map(&:stop) end def clients @clients ||= [] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
backport-0.2.0 | lib/backport/server/connectable.rb |