Class: NoSE::Backend::Backend::DeleteStatementStep
- Inherits:
-
StatementStep
- Object
- StatementStep
- NoSE::Backend::Backend::DeleteStatementStep
- Defined in:
- lib/nose/backend.rb
Overview
Delete data from an index on the backend
Direct Known Subclasses
CassandraBackend::DeleteStatementStep, FileBackend::DeleteStatementStep
Instance Attribute Summary
Attributes inherited from StatementStep
Instance Method Summary collapse
-
#initialize(client, index) ⇒ DeleteStatementStep
constructor
A new instance of DeleteStatementStep.
Methods included from Supertype
Constructor Details
#initialize(client, index) ⇒ DeleteStatementStep
Returns a new instance of DeleteStatementStep.
213 214 215 216 |
# File 'lib/nose/backend.rb', line 213 def initialize(client, index) @client = client @index = index end |