Class: Quaff::TCPSource
Direct Known Subclasses
Instance Attribute Summary collapse
-
#sock ⇒ Object
readonly
Returns the value of attribute sock.
Instance Method Summary collapse
- #close(cxn) ⇒ Object
-
#initialize(ip, port) ⇒ TCPSource
constructor
A new instance of TCPSource.
- #send_msg(_, data) ⇒ Object
Methods inherited from Source
Constructor Details
#initialize(ip, port) ⇒ TCPSource
Returns a new instance of TCPSource.
40 41 42 43 |
# File 'lib/sources.rb', line 40 def initialize ip, port @sock = TCPSocket.new ip, port @port, @ip = port, ip end |
Instance Attribute Details
#sock ⇒ Object (readonly)
Returns the value of attribute sock.
38 39 40 |
# File 'lib/sources.rb', line 38 def sock @sock end |
Instance Method Details
#close(cxn) ⇒ Object
49 50 51 52 |
# File 'lib/sources.rb', line 49 def close cxn @sock.close cxn.sockets.delete(@sock) end |
#send_msg(_, data) ⇒ Object
45 46 47 |
# File 'lib/sources.rb', line 45 def send_msg _, data @sock.sendmsg data end |