Package 

Interface LivekitModels.DataStream.ChunkOrBuilder

    • Method Summary

      Modifier and Type Method Description
      abstract String getStreamId()
      unique identifier for this data stream to map it to the correct header
      
      string stream_id = 1;
      abstract ByteString getStreamIdBytes()
      unique identifier for this data stream to map it to the correct header
      
      string stream_id = 1;
      abstract long getChunkIndex() uint64 chunk_index = 2;
      abstract ByteString getContent()
      content as binary (bytes)
      
      bytes content = 3;
      abstract int getVersion()
      a version indicating that this chunk_index has been retroactively modified and the original one needs to be replaced
      
      int32 version = 4;
      abstract boolean hasIv()
      this is set on the DataPacket
      
      optional bytes iv = 5 [deprecated = true];
      abstract ByteString getIv()
      this is set on the DataPacket
      
      optional bytes iv = 5 [deprecated = true];
      • Methods inherited from class com.google.protobuf.MessageLiteOrBuilder

        getDefaultInstanceForType, isInitialized
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getStreamId

         abstract String getStreamId()
        unique identifier for this data stream to map it to the correct header
        
        string stream_id = 1;
      • getStreamIdBytes

         abstract ByteString getStreamIdBytes()
        unique identifier for this data stream to map it to the correct header
        
        string 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 replaced
        
        int32 version = 4;
      • hasIv

        @Deprecated() abstract boolean hasIv()
        this is set on the DataPacket
        
        optional bytes iv = 5 [deprecated = true];
      • getIv

        @Deprecated() abstract ByteString getIv()
        this is set on the DataPacket
        
        optional bytes iv = 5 [deprecated = true];