Class: Appsignal::Transaction::NilTransaction
- 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
-
#instrument(*_args) ⇒ Object
Instrument should still yield.
- #method_missing(m, *args, &block) ⇒ Object
- #nil_transaction? ⇒ Boolean
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(m, *args, &block) ⇒ Object
558 559 |
# File 'lib/appsignal/transaction.rb', line 558 def method_missing(m, *args, &block) end |
Instance Method Details
#instrument(*_args) ⇒ Object
Instrument should still yield
562 563 564 |
# File 'lib/appsignal/transaction.rb', line 562 def instrument(*_args) yield end |
#nil_transaction? ⇒ Boolean
566 567 568 |
# File 'lib/appsignal/transaction.rb', line 566 def nil_transaction? true end |