Class: Backup::CloudIO::Base
- Inherits:
-
Object
- Object
- Backup::CloudIO::Base
- Defined in:
- lib/backup/cloud_io/base.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#max_retries ⇒ Object
readonly
Returns the value of attribute max_retries.
-
#retry_waitsec ⇒ Object
readonly
Returns the value of attribute retry_waitsec.
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ Base
constructor
A new instance of Base.
Constructor Details
#initialize(options = {}) ⇒ Base
Returns a new instance of Base.
11 12 13 14 |
# File 'lib/backup/cloud_io/base.rb', line 11 def initialize( = {}) @max_retries = [:max_retries] @retry_waitsec = [:retry_waitsec] end |
Instance Attribute Details
#max_retries ⇒ Object (readonly)
Returns the value of attribute max_retries.
9 10 11 |
# File 'lib/backup/cloud_io/base.rb', line 9 def max_retries @max_retries end |
#retry_waitsec ⇒ Object (readonly)
Returns the value of attribute retry_waitsec.
9 10 11 |
# File 'lib/backup/cloud_io/base.rb', line 9 def retry_waitsec @retry_waitsec end |