Module: Baykit::BayServer::Docker::Http::H1::H1CommandHandler
- Includes:
- Protocol::CommandHandler
- Defined in:
- lib/baykit/bayserver/docker/http/h1/h1_command_handler.rb
Overview
interface
Instance Method Summary collapse
- #finished ⇒ Object
- #handle_content(cmd) ⇒ Object
- #handle_end_content(cmd) ⇒ Object
- #handle_header(cmd) ⇒ Object
Instance Method Details
#finished ⇒ Object
22 23 24 |
# File 'lib/baykit/bayserver/docker/http/h1/h1_command_handler.rb', line 22 def finished() raise NotImplementedError.new() end |
#handle_content(cmd) ⇒ Object
14 15 16 |
# File 'lib/baykit/bayserver/docker/http/h1/h1_command_handler.rb', line 14 def handle_content(cmd) raise NotImplementedError.new() end |
#handle_end_content(cmd) ⇒ Object
18 19 20 |
# File 'lib/baykit/bayserver/docker/http/h1/h1_command_handler.rb', line 18 def handle_end_content(cmd) raise NotImplementedError.new() end |
#handle_header(cmd) ⇒ Object
10 11 12 |
# File 'lib/baykit/bayserver/docker/http/h1/h1_command_handler.rb', line 10 def handle_header(cmd) raise NotImplementedError.new() end |