module Cassandra::Statement

Public Instance Methods

accept(client, options) click to toggle source

@private

   # File lib/cassandra/statement.rb
28 def accept(client, options)
29   raise NotImplementedError, "#{self.class} must implement :accept method"
30 end
idempotent?() click to toggle source

Determines whether or not the statement is safe to retry on timeout @return [Boolean] whether the statement is safe to retry on timeout

   # File lib/cassandra/statement.rb
23 def idempotent?
24   !!@idempotent
25 end