Module: Baykit::BayServer::Docker::Http::H2::H2CommandHandler
- Includes:
- Protocol::CommandHandler
- Included in:
- H2ProtocolHandler
- Defined in:
- lib/baykit/bayserver/docker/http/h2/h2_command_handler.rb
Instance Method Summary collapse
- #handle_data(cmd) ⇒ Object
- #handle_go_away(cmd) ⇒ Object
- #handle_headers(cmd) ⇒ Object
- #handle_ping(cmd) ⇒ Object
- #handle_preface(cmd) ⇒ Object
- #handle_priority(cmd) ⇒ Object
- #handle_rst_stream(cmd) ⇒ Object
- #handle_settings(cmd) ⇒ Object
- #handle_window_update(cmd) ⇒ Object
Instance Method Details
#handle_data(cmd) ⇒ Object
13 14 15 |
# File 'lib/baykit/bayserver/docker/http/h2/h2_command_handler.rb', line 13 def handle_data(cmd) raise NotImplementedError.new end |
#handle_go_away(cmd) ⇒ Object
33 34 35 |
# File 'lib/baykit/bayserver/docker/http/h2/h2_command_handler.rb', line 33 def handle_go_away(cmd) raise NotImplementedError.new end |
#handle_headers(cmd) ⇒ Object
17 18 19 |
# File 'lib/baykit/bayserver/docker/http/h2/h2_command_handler.rb', line 17 def handle_headers(cmd) raise NotImplementedError.new end |
#handle_ping(cmd) ⇒ Object
37 38 39 |
# File 'lib/baykit/bayserver/docker/http/h2/h2_command_handler.rb', line 37 def handle_ping(cmd) raise NotImplementedError.new end |
#handle_preface(cmd) ⇒ Object
9 10 11 |
# File 'lib/baykit/bayserver/docker/http/h2/h2_command_handler.rb', line 9 def handle_preface(cmd) raise NotImplementedError.new end |
#handle_priority(cmd) ⇒ Object
21 22 23 |
# File 'lib/baykit/bayserver/docker/http/h2/h2_command_handler.rb', line 21 def handle_priority(cmd) raise NotImplementedError.new end |
#handle_rst_stream(cmd) ⇒ Object
41 42 43 |
# File 'lib/baykit/bayserver/docker/http/h2/h2_command_handler.rb', line 41 def handle_rst_stream(cmd) raise NotImplementedError.new end |
#handle_settings(cmd) ⇒ Object
25 26 27 |
# File 'lib/baykit/bayserver/docker/http/h2/h2_command_handler.rb', line 25 def handle_settings(cmd) raise NotImplementedError.new end |
#handle_window_update(cmd) ⇒ Object
29 30 31 |
# File 'lib/baykit/bayserver/docker/http/h2/h2_command_handler.rb', line 29 def handle_window_update(cmd) raise NotImplementedError.new end |