Class: Vines::Stream::Component::Handshake
- Defined in:
- lib/vines/stream/component/handshake.rb
Constant Summary
Constants inherited from State
Instance Attribute Summary
Attributes inherited from State
Instance Method Summary collapse
-
#initialize(stream, success = Ready) ⇒ Handshake
constructor
A new instance of Handshake.
- #node(node) ⇒ Object
Methods inherited from State
Methods included from Log
Constructor Details
#initialize(stream, success = Ready) ⇒ Handshake
Returns a new instance of Handshake.
7 8 9 |
# File 'lib/vines/stream/component/handshake.rb', line 7 def initialize(stream, success=Ready) super end |
Instance Method Details
#node(node) ⇒ Object
11 12 13 14 15 16 |
# File 'lib/vines/stream/component/handshake.rb', line 11 def node(node) raise StreamErrors::NotAuthorized unless handshake?(node) stream.write('<handshake/>') stream.router << stream advance end |