class Spark::Command::CombineByKey::Base


Public Instance Methods

lazy_run(iterator, *) click to toggle source
# File lib/spark/command/pair.rb, line 15
def lazy_run(iterator, *)
  _run(iterator).lazy
end
run(iterator, *) click to toggle source
# File lib/spark/command/pair.rb, line 11
def run(iterator, *)
  _run(iterator).to_a
end