Method: Brine::CleaningUp::DeleteCommand#initialize
- Defined in:
- lib/brine/cleaning_up.rb
#initialize(client, path, oks: [200,204], attempts: 3) ⇒ DeleteCommand
Construct a command with the required paramters to perform the delete.
41 42 43 44 45 46 |
# File 'lib/brine/cleaning_up.rb', line 41 def initialize(client, path, oks: [200,204], attempts: 3) @client = client @path = path @oks = oks @attempts = attempts end |