Class: Arachni::Reactor::Tasks::Persistent

Inherits:
Base
  • Object
show all
Defined in:
lib/arachni/reactor/tasks/persistent.rb

Overview

Task which does not cancel itself once called and occurs at every tick.

Author:

Direct Known Subclasses

Periodic

Instance Attribute Summary

Attributes inherited from Base

#owner

Instance Method Summary collapse

Methods inherited from Base

#done, #hash, #initialize, #to_proc

Constructor Details

This class inherits a constructor from Arachni::Reactor::Tasks::Base

Instance Method Details

#call(*args) ⇒ Object

Performs the task and marks it as Base#done.

Returns:

  • (Object)

    Return value of the task.



23
24
25
# File 'lib/arachni/reactor/tasks/persistent.rb', line 23

def call( *args )
    call_task( *args )
end