class DepthFirst::Task

Base task class

Attributes

options[R]

Public Class Methods

new(options = {}) click to toggle source
# File lib/depth_first/task.rb, line 6
def initialize(options = {})
  @options = Concurrent::Hash.new.merge(options.to_h)
end

Public Instance Methods

perform() click to toggle source
# File lib/depth_first/task.rb, line 10
def perform
  {}
end