Method: Sequel::Database::AsyncThreadPool::BaseProxy#__value

Defined in:
lib/sequel/extensions/async_thread_pool.rb

#__valueObject

Wait for the value to be loaded if it hasn’t already been loaded. If the code to load the return value raised an exception that was wrapped, reraise the exception.

[View source]

267
268
269
270
271
272
273
274
275
276
277
# File 'lib/sequel/extensions/async_thread_pool.rb', line 267

def __value
  unless defined?(@value)
    __get_value
  end

  if @value.is_a?(WrappedException)
    ::Kernel.raise @value
  end

  @value
end