# 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
# File lib/tarantool/fiber_db.rb, line 16 def by_pk(pk) by_pk_cb(pk, ::Fiber.current) _raise_or_return ::Fiber.yield end
# 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
# File lib/tarantool/fiber_db.rb, line 41 def delete(pk, opts={}) delete_cb(pk, ::Fiber.current, opts) _raise_or_return ::Fiber.yield end
# File lib/tarantool/fiber_db.rb, line 21 def insert(tuple, opts={}) insert_cb(tuple, ::Fiber.current, opts) _raise_or_return ::Fiber.yield end
# 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
# File lib/tarantool/fiber_db.rb, line 56 def ping ping_cb(::Fiber.current) _raise_or_return ::Fiber.yield end
# File lib/tarantool/fiber_db.rb, line 26 def replace(tuple, opts={}) replace_cb(tuple, ::Fiber.current, opts) _raise_or_return ::Fiber.yield end
Generated with the Darkfish Rdoc Generator 2.