Examples of CursorImpl


Examples of com.sleepycat.je.dbi.CursorImpl

     * that the message doesn't complain about a null value.
     */
    private static VLSN getVLSN(Cursor cursor, LogManager logManager)
        throws Exception {

        CursorImpl cursorImpl = DbInternal.getCursorImpl(cursor);
        BIN bin = cursorImpl.getBIN();
        int index = cursorImpl.getIndex();
        DBIN dbin = cursorImpl.getDupBIN();
        int dupIndex = cursorImpl.getDupIndex();

        final long lsn =
            (dbin != null) ? dbin.getLsn(dupIndex) : bin.getLsn(index);

        WholeEntry entry = logManager.getLogEntryAllowInvisible(lsn);
View Full Code Here

Examples of com.youtube.vitess.vtgate.cursor.CursorImpl

      session = response.getSession();
    }
    if (query.isStreaming()) {
      return new StreamCursor(response.getResult(), client);
    }
    return new CursorImpl(response.getResult());
  }
View Full Code Here

Examples of org.msgpack.value.impl.CursorImpl

    /**
     * Get a {@link org.msgpack.value.Cursor} for traversing message-packed values
     * @return
     */
    public Cursor getCursor() {
        return new CursorImpl(this);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.