class Arachni::Reactor::Tasks::OneOff

{Base Task} occurring at the next tick and then marking itself as {#done}.

@author Tasos “Zapotek” Laskos <tasos.laskos@gmail.com>

Public Instance Methods

call( *args ) click to toggle source

Performs the task and marks it as {#done}.

@return [Object]

Return value of the task.
# File lib/arachni/reactor/tasks/one_off.rb, line 22
def call( *args )
    call_task( *args )
ensure
    done
end