class InfluxReporter::Client::TransactionInfo

Public Instance Methods

current() click to toggle source
# File lib/influx_reporter/client.rb, line 22
def current
  Thread.current[KEY]
end
current=(transaction) click to toggle source
# File lib/influx_reporter/client.rb, line 26
def current=(transaction)
  Thread.current[KEY] = transaction
end