Module: Baykit::BayServer::Tours::ReqContentHandler

Overview

interface

Defined Under Namespace

Classes: DevNullReqContentHandler

Constant Summary collapse

DEV_NULL =
Baykit::BayServer::Tours::ReqContentHandler::DevNullReqContentHandler.new

Instance Method Summary collapse

Instance Method Details

#on_abort_req(tur) ⇒ Object

Raises:

  • (NotImplementedError)


14
15
16
# File 'lib/baykit/bayserver/tours/req_content_handler.rb', line 14

def on_abort_req(tur)
  raise NotImplementedError.new
end

#on_end_req_content(tur) ⇒ Object

Raises:

  • (NotImplementedError)


10
11
12
# File 'lib/baykit/bayserver/tours/req_content_handler.rb', line 10

def on_end_req_content(tur)
  raise NotImplementedError.new
end

#on_read_req_content(tur, buf, start, len) ⇒ Object

Raises:

  • (NotImplementedError)


6
7
8
# File 'lib/baykit/bayserver/tours/req_content_handler.rb', line 6

def on_read_req_content(tur, buf, start, len)
  raise NotImplementedError.new
end