Class LongArray.DeferredLongArray
- java.lang.Object
-
- org.apache.cassandra.index.sai.disk.v1.LongArray.DeferredLongArray
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.cassandra.index.sai.disk.v1.LongArray
LongArray.DeferredLongArray, LongArray.Factory
-
-
Constructor Summary
Constructors Constructor Description DeferredLongArray(java.util.function.Supplier<LongArray> supplier)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
long
get(long idx)
Get value atidx
.long
indexOf(long value)
Using the given value returns the first index corresponding to the value.long
length()
Get array length.
-
-
-
Constructor Detail
-
DeferredLongArray
public DeferredLongArray(java.util.function.Supplier<LongArray> supplier)
-
-
Method Detail
-
get
public long get(long idx)
Description copied from interface:LongArray
Get value atidx
.
-
length
public long length()
Description copied from interface:LongArray
Get array length.
-
indexOf
public long indexOf(long value)
Description copied from interface:LongArray
Using the given value returns the first index corresponding to the value.
-
-