Sha256: c0f089649a4b33c0a1b9101fc09ad647709ea4400da0ce575e1b3598463aeeed

Contents?: true

Size: 592 Bytes

Versions: 3

Compression:

Stored size: 592 Bytes

Contents

=begin

    This file is part of the Raktr project and may be subject to
    redistribution and commercial restrictions. Please see the Raktr
    web site for more information on licensing and terms of use.

=end

class Raktr
class Tasks

# {Base Task} which does not cancel itself once called and occurs at every
# tick.
#
# @author Tasos "Zapotek" Laskos <tasos.laskos@gmail.com>
class Persistent < Base

    # Performs the task and marks it as {#done}.
    #
    # @return   [Object]
    #   Return value of the task.
    def call( *args )
        call_task( *args )
    end

end

end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
raktr-0.0.3 lib/raktr/tasks/persistent.rb
raktr-0.0.2 lib/raktr/tasks/persistent.rb
raktr-0.0.1 lib/raktr/tasks/persistent.rb