Class: Net::ReadAdapter
- Inherits:
-
Object
- Object
- Net::ReadAdapter
- Defined in:
- lib/net/protocol.rb
Overview
:nodoc: internal use only
Instance Method Summary collapse
- #<<(str) ⇒ Object
-
#initialize(block) ⇒ ReadAdapter
constructor
A new instance of ReadAdapter.
- #inspect ⇒ Object
Constructor Details
#initialize(block) ⇒ ReadAdapter
Returns a new instance of ReadAdapter.
393 394 395 |
# File 'lib/net/protocol.rb', line 393 def initialize(block) @block = block end |
Instance Method Details
#<<(str) ⇒ Object
401 402 403 |
# File 'lib/net/protocol.rb', line 401 def <<(str) call_block(str, &@block) if @block end |
#inspect ⇒ Object
397 398 399 |
# File 'lib/net/protocol.rb', line 397 def inspect "#<#{self.class}>" end |