Package io.pravega.client.admin
Class StreamInfo
- java.lang.Object
- 
- io.pravega.client.admin.StreamInfo
 
- 
 @Beta public class StreamInfo extends java.lang.Object
- 
- 
Constructor SummaryConstructors Constructor Description StreamInfo(java.lang.String scope, java.lang.String streamName, StreamCut tailStreamCut, StreamCut headStreamCut, boolean sealed)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(java.lang.Object other)booleanequals(java.lang.Object o)StreamCutgetHeadStreamCut()StreamCutrepresenting the current HEAD of the stream.java.lang.StringgetScope()Scope name of the stream.java.lang.StringgetStreamName()Stream name.StreamCutgetTailStreamCut()StreamCutrepresenting the current TAIL of the stream.inthashCode()booleanisSealed()Indicates whether the Stream is sealed (true) or not (false).java.lang.StringtoString()
 
- 
- 
- 
Method Detail- 
getScopepublic java.lang.String getScope() Scope name of the stream.- Returns:
- Scope name of the stream.
 
 - 
getStreamNamepublic java.lang.String getStreamName() Stream name.- Returns:
- Stream name.
 
 - 
getTailStreamCutpublic StreamCut getTailStreamCut() StreamCutrepresenting the current TAIL of the stream.- Returns:
- StreamCutrepresenting the current TAIL of the stream.
 
 - 
getHeadStreamCutpublic StreamCut getHeadStreamCut() StreamCutrepresenting the current HEAD of the stream.- Returns:
- StreamCutrepresenting the current HEAD of the stream.
 
 - 
isSealedpublic boolean isSealed() Indicates whether the Stream is sealed (true) or not (false). If a stream is sealed, then no further Events can be written to it.- Returns:
- Indicates whether the Stream is sealed (true) or not (false).
 
 - 
equalspublic boolean equals(java.lang.Object o) - Overrides:
- equalsin class- java.lang.Object
 
 - 
canEqualprotected boolean canEqual(java.lang.Object other) 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- java.lang.Object
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 
- 
 
-