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.
481 482 483 |
# File 'lib/net/protocol.rb', line 481 def initialize(block) @block = block end |
Instance Method Details
#<<(str) ⇒ Object
489 490 491 |
# File 'lib/net/protocol.rb', line 489 def <<(str) call_block(str, &@block) if @block end |
#inspect ⇒ Object
485 486 487 |
# File 'lib/net/protocol.rb', line 485 def inspect "#<#{self.class}>" end |