Added in API level 33
    TimelineRequest
class TimelineRequest : BroadcastInfoRequest, Parcelable
| kotlin.Any | ||
| ↳ | android.media.tv.BroadcastInfoRequest | |
| ↳ | android.media.tv.TimelineRequest | |
A request for Timeline from broadcast signal.
Summary
| Inherited constants | |
|---|---|
| Public constructors | |
|---|---|
| TimelineRequest(requestId: Int, option: Int, intervalMillis: Int) | |
| TimelineRequest(requestId: Int, option: Int, intervalMillis: Int, selector: String) | |
| Public methods | |
|---|---|
| Int | |
| Int | Gets the interval of TIS sending response to TIAS in millisecond. | 
| String? | Gets the timeline selector. | 
| Unit | writeToParcel(dest: Parcel, flags: Int)Flatten this object in to a Parcel. | 
| Inherited functions | |
|---|---|
| Properties | |
|---|---|
| static Parcelable.Creator<TimelineRequest!> | |
Public constructors
TimelineRequest
Added in API level 33
      TimelineRequest(
requestId: Int,
option: Int,
intervalMillis: Int)
TimelineRequest
Added in API level 34
      TimelineRequest(
requestId: Int,
option: Int,
intervalMillis: Int,
selector: String)
| Parameters | |
|---|---|
| option | Int: Value is android.media.tv.BroadcastInfoRequest#REQUEST_OPTION_REPEAT,android.media.tv.BroadcastInfoRequest#REQUEST_OPTION_AUTO_UPDATE,android.media.tv.BroadcastInfoRequest#REQUEST_OPTION_ONEWAY, orandroid.media.tv.BroadcastInfoRequest#REQUEST_OPTION_ONESHOT | 
| selector | String: This value cannot be null. | 
Public methods
describeContents
Added in API level 33
      fun describeContents(): Int
| Return | |
|---|---|
| Int | a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0orandroid.os.Parcelable#CONTENTS_FILE_DESCRIPTOR | 
getIntervalMillis
Added in API level 33
      fun getIntervalMillis(): Int
Gets the interval of TIS sending response to TIAS in millisecond.
getSelector
Added in API level 34
      fun getSelector(): String?
Gets the timeline selector.
The selector describes the type and location of timeline signalling. For example urn:dvb:css:timeline:pts is a selector in DVB standard.
| Return | |
|---|---|
| String? | the selector if it's set; nullotherwise. | 
writeToParcel
Added in API level 33
      fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
Flatten this object in to a Parcel.
| Parameters | |
|---|---|
| dest | Parcel: This value cannot be null. | 
| flags | Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE. Value is either0or a combination ofandroid.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES | 
