Sha256: 43c8920f5caa7aa41d773b4b3c00e42f0892b9851328b555be1eb2a271bbf864
Contents?: true
Size: 918 Bytes
Versions: 3
Compression:
Stored size: 918 Bytes
Contents
=begin Copyright 2010-2015 Tasos Laskos <tasos.laskos@arachni-scanner.com> This file is part of the Arachni Framework project and is subject to redistribution and commercial restrictions. Please see the Arachni Framework web site for more information on licensing and terms of use. =end module Arachni class BrowserCluster module Jobs # Works together with {BrowserCluster#with_browser} to provide the callback # for this job with the {Browser} assigned to this job. # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> class BrowserProvider < Job def run browser.master.callback_for( self ).call browser end def to_s "#<#{self.class}:#{object_id} " << "callback=#{browser.master.callback_for( self ) if browser && browser.master} " << "time=#{@time} timed_out=#{timed_out?}>" end alias :inspect :to_s end end end end
Version data entries
3 entries across 3 versions & 1 rubygems