Files

Class/Module Index [+]

Quicksearch

Tarantool::FiberDB::Query

Public Instance Methods

all(space_no, index_no, keys, opts={}) click to toggle source
# File lib/tarantool/fiber_db.rb, line 115
def all(space_no, index_no, keys, opts={})
  all_cb(space_no, index_no, keys, ::Fiber.current, opts)
  _raise_or_return ::Fiber.yield
end
call(func_name, values, opts={}) click to toggle source
# File lib/tarantool/fiber_db.rb, line 155
def call(func_name, values, opts={})
  call_cb(func_name, values, ::Fiber.current, opts)
  _raise_or_return ::Fiber.yield
end
delete(space_no, pk, opts={}) click to toggle source
# File lib/tarantool/fiber_db.rb, line 145
def delete(space_no, pk, opts={})
  delete_cb(space_no, pk, ::Fiber.current, opts)
  _raise_or_return ::Fiber.yield
end
first(space_no, index_no, key, opts={}) click to toggle source
# File lib/tarantool/fiber_db.rb, line 120
def first(space_no, index_no, key, opts={})
  first_cb(space_no, index_no, key, ::Fiber.current, opts)
  _raise_or_return ::Fiber.yield
end
insert(space_no, tuple, opts={}) click to toggle source
# File lib/tarantool/fiber_db.rb, line 125
def insert(space_no, tuple, opts={})
  insert_cb(space_no, 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 150
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 160
def ping
  ping_cb(::Fiber.current)
  _raise_or_return ::Fiber.yield
end
replace(space_no, tuple, opts={}) click to toggle source
# File lib/tarantool/fiber_db.rb, line 130
def replace(space_no, tuple, opts={})
  replace_cb(space_no, tuple, ::Fiber.current, opts)
  _raise_or_return ::Fiber.yield
end
select(space_no, index_no, keys, offset, limit, opts={}) click to toggle source
# File lib/tarantool/fiber_db.rb, line 110
def select(space_no, index_no, keys, offset, limit, opts={})
  select_cb(space_no, index_no, keys, offset, limit, ::Fiber.current, opts)
  _raise_or_return ::Fiber.yield
end
store(space_no, tuple, opts={}) click to toggle source
# File lib/tarantool/fiber_db.rb, line 135
def store(space_no, tuple, opts={})
  store_cb(space_no, tuple, ::Fiber.current, opts)
  _raise_or_return ::Fiber.yield
end
update(space_no, pk, operation, opts={}) click to toggle source
# File lib/tarantool/fiber_db.rb, line 140
def update(space_no, pk, operation, opts={})
  update_cb(space_no, pk, operation, ::Fiber.current, opts)
  _raise_or_return ::Fiber.yield
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.