Module: Baykit::BayServer::Tours::TourHandler
- Included in:
- Common::InboundHandler, Common::WarpHandler
- Defined in:
- lib/baykit/bayserver/tours/tour_handler.rb
Instance Method Summary collapse
-
#on_protocol_error(e) ⇒ Object
Send protocol error to client.
-
#send_end_tour(tur, keep_alive, &lis) ⇒ Object
Send end of contents to client.
-
#send_res_content(tur, bytes, ofs, len, &lis) ⇒ Object
Send Contents to client.
-
#send_res_headers(tur) ⇒ Object
Send HTTP headers to client.
Instance Method Details
#on_protocol_error(e) ⇒ Object
Send protocol error to client
29 30 31 |
# File 'lib/baykit/bayserver/tours/tour_handler.rb', line 29 def on_protocol_error(e) raise NotImplementedError.new end |
#send_end_tour(tur, keep_alive, &lis) ⇒ Object
Send end of contents to client.
24 25 26 |
# File 'lib/baykit/bayserver/tours/tour_handler.rb', line 24 def send_end_tour(tur, keep_alive, &lis) raise NotImplementedError.new end |
#send_res_content(tur, bytes, ofs, len, &lis) ⇒ Object
Send Contents to client
19 20 21 |
# File 'lib/baykit/bayserver/tours/tour_handler.rb', line 19 def send_res_content(tur, bytes, ofs, len, &lis) raise NotImplementedError.new end |
#send_res_headers(tur) ⇒ Object
Send HTTP headers to client
14 15 16 |
# File 'lib/baykit/bayserver/tours/tour_handler.rb', line 14 def send_res_headers(tur) raise NotImplementedError.new end |