public interface Stream
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getScope()
Gets the scope of this stream.
|
java.lang.String |
getScopedName()
Gets the scoped name of this stream.
|
java.lang.String |
getStreamName()
Gets the name of this stream (Not including the scope).
|
static Stream |
of(java.lang.String scopedName)
Helper utility to create a Stream object from a scopedName of a Stream.
|
static Stream |
of(java.lang.String scope,
java.lang.String streamName)
Helper utility to create a Stream object.
|
java.lang.String getScope()
java.lang.String getStreamName()
java.lang.String getScopedName()
static Stream of(java.lang.String scope, java.lang.String streamName)
scope
- Scope of the stream.streamName
- Name of the stream.static Stream of(java.lang.String scopedName)
scopedName
- Scoped Name of the stream e.g: scopeName/streamName .