congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
RowIndexEntry.deletionTime
Code IndexAdd Tabnine to your IDE (free)

How to use
deletionTime
method
in
org.apache.cassandra.db.RowIndexEntry

Best Java code snippets using org.apache.cassandra.db.RowIndexEntry.deletionTime (Showing top 8 results out of 315)

origin: com.facebook.presto.cassandra/cassandra-server

public void serialize(RowIndexEntry rie, DataOutputPlus out) throws IOException
{
  out.writeLong(rie.position);
  out.writeInt(rie.promotedSize(type));
  if (rie.isIndexed())
  {
    DeletionTime.serializer.serialize(rie.deletionTime(), out);
    out.writeInt(rie.columnsIndex().size());
    ISerializer<IndexHelper.IndexInfo> idxSerializer = type.indexSerializer();
    for (IndexHelper.IndexInfo info : rie.columnsIndex())
      idxSerializer.serialize(info, out);
  }
}
origin: com.facebook.presto.cassandra/cassandra-server

  public int serializedSize(RowIndexEntry rie)
  {
    int size = TypeSizes.NATIVE.sizeof(rie.position) + TypeSizes.NATIVE.sizeof(rie.promotedSize(type));
    if (rie.isIndexed())
    {
      List<IndexHelper.IndexInfo> index = rie.columnsIndex();
      size += DeletionTime.serializer.serializedSize(rie.deletionTime(), TypeSizes.NATIVE);
      size += TypeSizes.NATIVE.sizeof(index.size());
      ISerializer<IndexHelper.IndexInfo> idxSerializer = type.indexSerializer();
      for (IndexHelper.IndexInfo info : index)
        size += idxSerializer.serializedSize(info, TypeSizes.NATIVE);
    }
    return size;
  }
}
origin: com.facebook.presto.cassandra/cassandra-server

cf.delete(indexEntry.deletionTime());
origin: com.facebook.presto.cassandra/cassandra-server

emptyColumnFamily.delete(indexEntry.deletionTime());
fetcher = new IndexedBlockFetcher(indexEntry.position);
origin: org.apache.cassandra/cassandra-all

this.partitionLevelDeletion = indexEntry.deletionTime();
this.staticRow = Rows.EMPTY_STATIC_ROW;
this.reader = needsReader ? createReader(indexEntry, file, shouldCloseFile) : null;
origin: jsevellec/cassandra-unit

this.partitionLevelDeletion = indexEntry.deletionTime();
this.staticRow = Rows.EMPTY_STATIC_ROW;
this.reader = needsReader ? createReader(indexEntry, file, shouldCloseFile) : null;
origin: com.netflix.sstableadaptor/sstable-adaptor-cassandra

this.partitionLevelDeletion = indexEntry.deletionTime();
this.staticRow = Rows.EMPTY_STATIC_ROW;
this.reader = needsReader ? createReader(indexEntry, file, shouldCloseFile) : null;
origin: com.strapdata.cassandra/cassandra-all

this.partitionLevelDeletion = indexEntry.deletionTime();
this.staticRow = Rows.EMPTY_STATIC_ROW;
this.reader = needsReader ? createReader(indexEntry, file, shouldCloseFile) : null;
org.apache.cassandra.dbRowIndexEntrydeletionTime

Popular methods of RowIndexEntry

  • <init>
  • create
  • isIndexed
  • columnsIndexCount
  • openWithIndex
  • serialize
  • serializeForCache
  • indexOnHeap
  • columnsIndex
  • promotedSize

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getContentResolver (Context)
  • runOnUiThread (Activity)
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Github Copilot 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