Class: Bigcommerce::Lightstep::Interceptors::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/bigcommerce/lightstep/interceptors/base.rb

Overview

Hydrates span tags with specified ENV vars

Direct Known Subclasses

Env

Instance Method Summary collapse

Constructor Details

#initializeBase

Returns a new instance of Base.



25
# File 'lib/bigcommerce/lightstep/interceptors/base.rb', line 25

def initialize(*); end

Instance Method Details

#callObject

Parameters:

  • span (::LightStep::Span)

Raises:

  • (NotImplementedError)


30
31
32
# File 'lib/bigcommerce/lightstep/interceptors/base.rb', line 30

def call(*)
  raise NotImplementedError, 'Please implement .call on your subclassed interceptor'
end