Package com.orientechnologies.orient.core.record.impl

Examples of com.orientechnologies.orient.core.record.impl.ORecordBytes.reset()


  public ORecordInternal<?> fromStream(final ODatabaseRecord iDatabase, final byte[] iSource, final ORecordInternal<?> iRecord) {
    final ORecordBytes record = (ORecordBytes) iRecord;

    record.fromStream(iSource);
    record.reset(iSource);
    record.setDatabase(iDatabase);

    return record;
  }
View Full Code Here


  public ORecordInternal<?> fromStream(final ODatabaseRecord iDatabase, final byte[] iSource, final ORecordInternal<?> iRecord) {
    final ORecordBytes record = (ORecordBytes) iRecord;

    record.fromStream(iSource);
    record.reset(iSource);
    record.setDatabase(iDatabase);

    return record;
  }
View Full Code Here

  }

  public ORecord fromStream(final byte[] iSource, final ORecord iRecord, String[] iFields) {
    final ORecordBytes record = (ORecordBytes) iRecord;
    record.fromStream(iSource);
    record.reset(iSource);

    return record;
  }

  public byte[] toStream(final ORecord iSource, boolean iOnlyDelta) {
View Full Code Here

          bufferedBytes += bytesRead;
        }

        // Save the chunk to the database.
        final long saveStartTime = System.currentTimeMillis();
        chunk.reset(buffer);
        chunk.save();
        final long saveMs = System.currentTimeMillis() - saveStartTime;

        // Log the amount of time taken by the save.
        System.out.printf("Saved chunk %d in %d ms.\n", page, saveMs);
View Full Code Here

          bufferedBytes += bytesRead;
        }

        // Save the chunk to the database.
        final long saveStartTime = System.currentTimeMillis();
        chunk.reset(Arrays.copyOf(buffer, remainder));
        chunk.save();
        final long saveMs = System.currentTimeMillis() - saveStartTime;

        // Log the amount of time taken by the save.
        System.out.printf("Saved partial chunk %d in %d ms.\n", fullChunks, saveMs);
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.