Package io.hstream
Class Stream
- java.lang.Object
-
- io.hstream.Stream
-
public class Stream extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Stream.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
int
getBacklogDuration()
Instant
getCreatedTime()
int
getReplicationFactor()
int
getShardCount()
String
getStreamName()
int
hashCode()
static Stream.Builder
newBuilder()
void
setBacklogDuration(int backlogDuration)
void
setReplicationFactor(int replicationFactor)
void
setShardCount(int shardCount)
void
setStreamName(String streamName)
-
-
-
Method Detail
-
getStreamName
public String getStreamName()
-
setStreamName
public void setStreamName(String streamName)
-
getReplicationFactor
public int getReplicationFactor()
-
setReplicationFactor
public void setReplicationFactor(int replicationFactor)
-
getBacklogDuration
public int getBacklogDuration()
-
setBacklogDuration
public void setBacklogDuration(int backlogDuration)
-
getShardCount
public int getShardCount()
-
setShardCount
public void setShardCount(int shardCount)
-
getCreatedTime
public Instant getCreatedTime()
-
newBuilder
public static Stream.Builder newBuilder()
-
-