Module tdlight.api

Class TdApi.GroupCallStream

java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.GroupCallStream
Enclosing class:
TdApi

public static final class TdApi.GroupCallStream extends TdApi.Object
Describes an available stream in a group call.
  • Field Details

    • channelId

      public int channelId
      Identifier of an audio/video channel.
    • scale

      public int scale
      Scale of segment durations in the stream. The duration is 1000/(2**scale) milliseconds.
    • timeOffset

      public long timeOffset
      Point in time when the stream currently ends; Unix timestamp in milliseconds.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • GroupCallStream

      public GroupCallStream()
      Describes an available stream in a group call.
    • GroupCallStream

      public GroupCallStream(int channelId, int scale, long timeOffset)
      Describes an available stream in a group call.
      Parameters:
      channelId - int Identifier of an audio/video channel.
      scale - int Scale of segment durations in the stream. The duration is 1000/(2**scale) milliseconds.
      timeOffset - long Point in time when the stream currently ends; Unix timestamp in milliseconds.
    • GroupCallStream

      public GroupCallStream(DataInput input) throws IOException
      Describes an available stream in a group call.
      Throws:
      IOException
  • Method Details