Class: AddressFinder::V2::Au::BatchVerification
- Inherits:
-
Object
- Object
- AddressFinder::V2::Au::BatchVerification
- Defined in:
- lib/addressfinder/v2/au/batch_verification.rb
Instance Attribute Summary collapse
-
#addresses ⇒ Object
readonly
Returns the value of attribute addresses.
-
#results ⇒ Object
readonly
Returns the value of attribute results.
Instance Method Summary collapse
-
#initialize(addresses:, http: nil, concurrency: 2, **args) ⇒ BatchVerification
constructor
Verifies an array of addresses using concurrency to reduce the execution time.
- #perform ⇒ Object
Constructor Details
#initialize(addresses:, http: nil, concurrency: 2, **args) ⇒ BatchVerification
Verifies an array of addresses using concurrency to reduce the execution time.
The results of the verification are stored in the ‘results` attribute, in the same order in which they were supplied.
16 17 18 19 20 21 |
# File 'lib/addressfinder/v2/au/batch_verification.rb', line 16 def initialize(addresses:, http: nil, concurrency: 2, **args) @addresses = addresses @concurrency = concurrency @http = http @args = args end |
Instance Attribute Details
#addresses ⇒ Object (readonly)
Returns the value of attribute addresses.
5 6 7 |
# File 'lib/addressfinder/v2/au/batch_verification.rb', line 5 def addresses @addresses end |
#results ⇒ Object (readonly)
Returns the value of attribute results.
5 6 7 |
# File 'lib/addressfinder/v2/au/batch_verification.rb', line 5 def results @results end |
Instance Method Details
#perform ⇒ Object
23 24 25 26 27 28 |
# File 'lib/addressfinder/v2/au/batch_verification.rb', line 23 def perform confirm_concurrency_level verify_each_address_concurrently self end |