-
- All Implemented Interfaces:
-
com.google.protobuf.MessageLiteOrBuilder
public interface LivekitModels.DataStream.ChunkOrBuilder implements MessageLiteOrBuilder
-
-
Method Summary
Modifier and Type Method Description abstract StringgetStreamId()unique identifier for this data stream to map it to the correct headerstring stream_id = 1;abstract ByteStringgetStreamIdBytes()unique identifier for this data stream to map it to the correct headerstring stream_id = 1;abstract longgetChunkIndex()uint64 chunk_index = 2;abstract ByteStringgetContent()content as binary (bytes)bytes content = 3;abstract intgetVersion()a version indicating that this chunk_index has been retroactively modified and the original one needs to be replacedint32 version = 4;abstract booleanhasIv()this is set on the DataPacketoptional bytes iv = 5 [deprecated = true];abstract ByteStringgetIv()this is set on the DataPacketoptional bytes iv = 5 [deprecated = true];-
-
Method Detail
-
getStreamId
abstract String getStreamId()
unique identifier for this data stream to map it to the correct headerstring stream_id = 1;
-
getStreamIdBytes
abstract ByteString getStreamIdBytes()
unique identifier for this data stream to map it to the correct headerstring stream_id = 1;
-
getChunkIndex
abstract long getChunkIndex()
uint64 chunk_index = 2;
-
getContent
abstract ByteString getContent()
content as binary (bytes)bytes content = 3;
-
getVersion
abstract int getVersion()
a version indicating that this chunk_index has been retroactively modified and the original one needs to be replacedint32 version = 4;
-
hasIv
@Deprecated() abstract boolean hasIv()
this is set on the DataPacketoptional bytes iv = 5 [deprecated = true];
-
getIv
@Deprecated() abstract ByteString getIv()
this is set on the DataPacketoptional bytes iv = 5 [deprecated = true];
-
-
-
-