class Google::Cloud::Env::LazyValue

def perform_compute extra_args

Other tags:
    Private: -
def perform_compute extra_args
  value = @compute_handler.call(*extra_args)
  @mutex.synchronize do
    handle_success value
  end
rescue Exception => e # rubocop:disable Lint/RescueException
  @mutex.synchronize do
    handle_failure e
  end
end