This class creates and manages a list to keep track of the visits that are in process (cached) Once a visit reaches the time interval, an output transaction is generated and the visit is removed from the list
# File lib/vizi/vizi_tracker.rb, line 332 def append(visit) @visits.push(visit) self end
# File lib/vizi/vizi_tracker.rb, line 337 def delete(visit) @visits.delete(visit) end
# File lib/vizi/vizi_tracker.rb, line 341 def find_all @visits end
Generated with the Darkfish Rdoc Generator 2.