class LHC::Interceptors

def initialize(request)

Experimental RBS support (using type sampling data from the type_fusion project).

def initialize: (LHC::Request request) -> void

This signature was generated using 37 samples from 1 application.

Intitalizes and determines if global or local interceptors are used
def initialize(request)
  self.all = (request.options[:interceptors] || LHC.config.interceptors).map do |interceptor|
    interceptor.new(request)
  end
end