Package io.pravega.client.tables
Class KeyValueTableConfiguration
- java.lang.Object
-
- io.pravega.client.tables.KeyValueTableConfiguration
-
- All Implemented Interfaces:
java.io.Serializable
@Beta public class KeyValueTableConfiguration extends java.lang.Object implements java.io.SerializableThe configuration of a Key-Value Table.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classKeyValueTableConfiguration.KeyValueTableConfigurationBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static KeyValueTableConfiguration.KeyValueTableConfigurationBuilderbuilder()protected booleancanEqual(java.lang.Object other)booleanequals(java.lang.Object o)intgetPartitionCount()The number of Partitions for a Key-Value Table.inthashCode()java.lang.StringtoString()
-
-
-
Method Detail
-
builder
public static KeyValueTableConfiguration.KeyValueTableConfigurationBuilder builder()
-
getPartitionCount
public int getPartitionCount()
The number of Partitions for a Key-Value Table. This value cannot be adjusted after the Key-Value Table has been created.- Returns:
- The number of Partitions for a Key-Value Table.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-