class Cassandra::Statements::Batch::Counter

@private

Public Instance Methods

idempotent?() click to toggle source

Determines whether or not the statement is safe to retry on timeout Counter batches are never considered idempotent. @return [Boolean] whether the statement is safe to retry on timeout

   # File lib/cassandra/statements/batch.rb
51 def idempotent?
52   false
53 end
type() click to toggle source
   # File lib/cassandra/statements/batch.rb
44 def type
45   :counter
46 end