Tabnine Logo
RecordStore.ensureHeavy
Code IndexAdd Tabnine to your IDE (free)

How to use
ensureHeavy
method
in
org.neo4j.kernel.impl.store.RecordStore

Best Java code snippets using org.neo4j.kernel.impl.store.RecordStore.ensureHeavy (Showing top 11 results out of 315)

origin: neo4j/neo4j

@Override
public void ensureHeavy( R record )
{
  actual.ensureHeavy( record );
}
origin: neo4j/neo4j

@Override
public void ensureHeavy( NodeRecord record )
{
  store.ensureHeavy( record );
}
origin: neo4j/neo4j

@Override
public void ensureHeavy( PropertyKeyTokenRecord record )
{
  store.ensureHeavy( record );
}
origin: neo4j/neo4j

@Override
public void ensureHeavy( LabelTokenRecord record )
{
  store.ensureHeavy( record );
}
origin: neo4j/neo4j

@Override
public void ensureHeavy( RelationshipTypeTokenRecord record )
{
  store.ensureHeavy( record );
}
origin: neo4j/neo4j

protected R getHeavy( S store, int id )
{
  R record = store.getRecord( id, store.newRecord(), NORMAL );
  store.ensureHeavy( record );
  return record;
}
origin: org.neo4j/neo4j-kernel

@Override
public void ensureHeavy( LabelTokenRecord record )
{
  store.ensureHeavy( record );
}
origin: org.neo4j/neo4j-kernel

@Override
public void ensureHeavy( R record )
{
  actual.ensureHeavy( record );
}
origin: org.neo4j/neo4j-kernel

@Override
public void ensureHeavy( PropertyKeyTokenRecord record )
{
  store.ensureHeavy( record );
}
origin: org.neo4j/neo4j-kernel

@Override
public void ensureHeavy( RelationshipTypeTokenRecord record )
{
  store.ensureHeavy( record );
}
origin: org.neo4j/neo4j-kernel

@Override
public void ensureHeavy( NodeRecord record )
{
  store.ensureHeavy( record );
}
org.neo4j.kernel.impl.storeRecordStoreensureHeavy

Javadoc

For stores that have other stores coupled underneath, the "top level" record will have a flag saying whether or not it's light. Light means that no records from the coupled store have been loaded yet. This method can load those records and enrich the target record with those, marking it as heavy.

Popular methods of RecordStore

  • getRecord
    Utility methods for reading records. These are not on the interface itself since it should be an exp
  • getHighId
  • newRecord
  • updateRecord
    Updates this store with the contents of record at the record id AbstractBaseRecord#getId() by the re
  • getRecordSize
  • nextId
  • getRecordDataSize
  • setHighestPossibleIdInUse
    Sets highest id in use for this store. This is for when records are applied to this store where the
  • getNumberOfReservedLowIds
    Some stores may have meta data stored in the header of the store file. Since all records in a store
  • getRecordsPerPage
  • getStorageFile
  • prepareForCommit
    Called once all changes to a record is ready to be converted into a command. WARNING this is for adv
  • getStorageFile,
  • prepareForCommit,
  • accept,
  • addRecord,
  • close,
  • closeRecordStore,
  • deleteRecord,
  • enumerateRecords,
  • flush

Popular in Java

  • Reactive rest calls using spring rest template
  • putExtra (Intent)
  • getExternalFilesDir (Context)
  • getSystemService (Context)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now