module Tarantool::FiberDB::CommonSpaceFiberMethods
Public Instance Methods
all_by_pks(pks, opts={})
click to toggle source
# File lib/tarantool/fiber_db.rb, line 11 def all_by_pks(pks, opts={}) all_by_pks_cb(pks, ::Fiber.current, opts) _raise_or_return ::Fiber.yield end
by_pk(pk)
click to toggle source
# File lib/tarantool/fiber_db.rb, line 16 def by_pk(pk) by_pk_cb(pk, ::Fiber.current) _raise_or_return ::Fiber.yield end
call(func_name, values = [], opts = {})
click to toggle source
# File lib/tarantool/fiber_db.rb, line 51 def call(func_name, values = [], opts = {}) call_cb(func_name, values, ::Fiber.current, opts) _raise_or_return ::Fiber.yield end
delete(pk, opts={})
click to toggle source
# File lib/tarantool/fiber_db.rb, line 41 def delete(pk, opts={}) delete_cb(pk, ::Fiber.current, opts) _raise_or_return ::Fiber.yield end
insert(tuple, opts={})
click to toggle source
# File lib/tarantool/fiber_db.rb, line 21 def insert(tuple, opts={}) insert_cb(tuple, ::Fiber.current, opts) _raise_or_return ::Fiber.yield end
invoke(func_name, values = [], opts = {})
click to toggle source
# File lib/tarantool/fiber_db.rb, line 46 def invoke(func_name, values = [], opts = {}) invoke_cb(func_name, values, ::Fiber.current, opts) _raise_or_return ::Fiber.yield end
ping()
click to toggle source
# File lib/tarantool/fiber_db.rb, line 56 def ping ping_cb(::Fiber.current) _raise_or_return ::Fiber.yield end
replace(tuple, opts={})
click to toggle source
# File lib/tarantool/fiber_db.rb, line 26 def replace(tuple, opts={}) replace_cb(tuple, ::Fiber.current, opts) _raise_or_return ::Fiber.yield end
store(tuple, opts={})
click to toggle source
# File lib/tarantool/fiber_db.rb, line 31 def store(tuple, opts={}) store_cb(tuple, ::Fiber.current, opts) _raise_or_return ::Fiber.yield end
update(pk, operations, opts={})
click to toggle source
# File lib/tarantool/fiber_db.rb, line 36 def update(pk, operations, opts={}) update_cb(pk, operations, ::Fiber.current, opts) _raise_or_return ::Fiber.yield end