module AST::LoadableSet

Public Instance Methods

evaluate(data) click to toggle source
# File bin/twitter-algebra, line 161
def evaluate(data)
  Algebra::Set.new(data[key])
end
load_data(threads) click to toggle source
# File bin/twitter-algebra, line 155
def load_data(threads)
  threads[key] ||= Thread.start {
    fetch_data
  }
end