Class: DevSuite::RequestLogger::Extractor::Base
- Inherits:
 - 
      Utils::Construct::Component::Base
      
        
- Object
 - Utils::Construct::Component::Base
 - DevSuite::RequestLogger::Extractor::Base
 
 
- Defined in:
 - lib/dev_suite/request_logger/extractor/base.rb
 
Instance Method Summary collapse
- 
  
    
      #extract_request(_instance, _request)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Extracts the request details from an HTTP request object.
 - 
  
    
      #extract_response(_instance, _response)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Extracts the response details from an HTTP response object.
 
Methods inherited from Utils::Construct::Component::Base
Instance Method Details
#extract_request(_instance, _request) ⇒ Object
Extracts the request details from an HTTP request object
      10 11 12  | 
    
      # File 'lib/dev_suite/request_logger/extractor/base.rb', line 10 def extract_request(_instance, _request) raise NotImplementedError end  | 
  
#extract_response(_instance, _response) ⇒ Object
Extracts the response details from an HTTP response object
      17 18 19  | 
    
      # File 'lib/dev_suite/request_logger/extractor/base.rb', line 17 def extract_response(_instance, _response) raise NotImplementedError end  |