class Cql::Client::SynchronousPreparedStatementBatch

@private

Public Class Methods

new(asynchronous_batch) click to toggle source
# File lib/cql/client/batch.rb, line 183
def initialize(asynchronous_batch)
  @asynchronous_batch = asynchronous_batch
end

Public Instance Methods

add(*args) click to toggle source
# File lib/cql/client/batch.rb, line 187
def add(*args)
  @asynchronous_batch.add(*args)
end
execute(options=nil) click to toggle source
# File lib/cql/client/batch.rb, line 191
def execute(options=nil)
  synchronous_backtrace { @asynchronous_batch.execute(options).value }
end