class Andromeda::Guides::SpawnTrack

Public Instance Methods

follow(*args, &thunk) click to toggle source
# File lib/andromeda/guide.rb, line 44
def follow(*args, &thunk)
  Thread.new { || thunk.call *args }
end

Protected Instance Methods

process(&thunk) click to toggle source
# File lib/andromeda/guide_track.rb, line 93
def process(&thunk) ; Thread.new { || Thread.current; thunk.call } end