Interface PrimaryKeyMap.Factory
-
- All Superinterfaces:
java.lang.AutoCloseable
,java.io.Closeable
- All Known Implementing Classes:
SkinnyPrimaryKeyMap.Factory
,WidePrimaryKeyMap.Factory
- Enclosing interface:
- PrimaryKeyMap
@ThreadSafe public static interface PrimaryKeyMap.Factory extends java.io.Closeable
A factory for creatingPrimaryKeyMap
instances. Implementations of this interface are expected to be threadsafe.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
close()
PrimaryKeyMap
newPerSSTablePrimaryKeyMap()
Creates a newPrimaryKeyMap
instance
-
-
-
Method Detail
-
newPerSSTablePrimaryKeyMap
PrimaryKeyMap newPerSSTablePrimaryKeyMap() throws java.io.IOException
Creates a newPrimaryKeyMap
instance- Returns:
- a
PrimaryKeyMap
- Throws:
java.io.IOException
- if thePrimaryKeyMap
couldn't be created
-
close
default void close()
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
-
-