Files

Class/Module Index [+]

Quicksearch

Tarantool::BlockDB::CommonSpaceBlockingMethods

Public Instance Methods

_block_cb() click to toggle source
# File lib/tarantool/block_db.rb, line 102
def _block_cb
  @_block_cb ||= method(:_raise_or_return)
end
all_by_pks(pks, opts={}) click to toggle source
# File lib/tarantool/block_db.rb, line 106
def all_by_pks(pks, opts={})
  all_by_pks_cb(pks, _block_cb, opts)
end
by_pk(pk) click to toggle source
# File lib/tarantool/block_db.rb, line 110
def by_pk(pk)
  by_pk_cb(pk, _block_cb)
end
call(func_name, values = [], opts = {}) click to toggle source
# File lib/tarantool/block_db.rb, line 138
def call(func_name, values = [], opts = {})
  call_cb(func_name, values, _block_cb, opts)
end
delete(pk, opts={}) click to toggle source
# File lib/tarantool/block_db.rb, line 130
def delete(pk, opts={})
  delete_cb(pk, _block_cb, opts)
end
insert(tuple, opts={}) click to toggle source
# File lib/tarantool/block_db.rb, line 114
def insert(tuple, opts={})
  insert_cb(tuple, _block_cb, opts)
end
invoke(func_name, values = [], opts = {}) click to toggle source
# File lib/tarantool/block_db.rb, line 134
def invoke(func_name, values = [], opts = {})
  invoke_cb(func_name, values, _block_cb, opts)
end
ping() click to toggle source
# File lib/tarantool/block_db.rb, line 142
def ping
  ping_cb(_block_cb)
end
replace(tuple, opts={}) click to toggle source
# File lib/tarantool/block_db.rb, line 118
def replace(tuple, opts={})
  replace_cb(tuple, _block_cb, opts)
end
store(tuple, opts={}) click to toggle source
# File lib/tarantool/block_db.rb, line 122
def store(tuple, opts={})
  store_cb(tuple, _block_cb, opts)
end
update(pk, operations, opts={}) click to toggle source
# File lib/tarantool/block_db.rb, line 126
def update(pk, operations, opts={})
  update_cb(pk, operations, _block_cb, opts)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.