Class: Appsignal::Transaction::NilTransaction

Inherits:
Object
  • Object
show all
Defined in:
lib/appsignal/transaction.rb

Overview

Stub that is returned by current if there is no current transaction, so that it's still safe to call methods on it if there is no current transaction.

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(m, *args, &block) ⇒ Object



477
478
# File 'lib/appsignal/transaction.rb', line 477

def method_missing(m, *args, &block)
end

Instance Method Details

#instrument(*_args) ⇒ Object

Instrument should still yield



481
482
483
# File 'lib/appsignal/transaction.rb', line 481

def instrument(*_args)
  yield
end

#nil_transaction?Boolean

Returns:

  • (Boolean)


485
486
487
# File 'lib/appsignal/transaction.rb', line 485

def nil_transaction?
  true
end