TimelineResponse
class TimelineResponse : BroadcastInfoResponse, Parcelable
kotlin.Any | ||
↳ | android.media.tv.BroadcastInfoResponse | |
↳ | android.media.tv.TimelineResponse |
A response for Timeline from broadcast signal.
Summary
Inherited constants | |
---|---|
Public constructors | |
---|---|
Public methods | |
---|---|
Int | |
Uri? |
Gets the Timeline Selector of the response. |
Long |
getTicks() Gets the Ticks of the response. |
Int |
Gets the UnitsPerSecond of the response. |
Int |
Gets the UnitsPerTick of the response. |
Long |
Gets the System time (UTC) of the response. |
Unit |
writeToParcel(dest: Parcel, flags: Int) Flatten this object in to a Parcel. |
Inherited functions | |
---|---|
Properties | |
---|---|
static Parcelable.Creator<TimelineResponse!> |
Public constructors
TimelineResponse
TimelineResponse(
requestId: Int,
sequence: Int,
responseResult: Int,
selector: String?,
unitsPerTick: Int,
unitsPerSecond: Int,
wallClock: Long,
ticks: Long)
Parameters | |
---|---|
responseResult |
Int: Value is android.media.tv.BroadcastInfoResponse#RESPONSE_RESULT_ERROR , android.media.tv.BroadcastInfoResponse#RESPONSE_RESULT_OK , or android.media.tv.BroadcastInfoResponse#RESPONSE_RESULT_CANCEL |
selector |
String?: This value may be null . |
Public methods
describeContents
fun describeContents(): Int
Return | |
---|---|
Int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or android.os.Parcelable#CONTENTS_FILE_DESCRIPTOR |
getSelector
fun getSelector(): Uri?
Gets the Timeline Selector of the response. The Timeline Selector is a URI that specifies the source of a Timeline by indicating its type and information needed to locate the signalling that conveys Time Values on it.
Return | |
---|---|
Uri? |
This value may be null . |
getTicks
fun getTicks(): Long
Gets the Ticks of the response. A Time Value is a measure of a moment in time for a particular Timeline. Time Values are represented by an integer number of ticks (positive or negative).
getUnitsPerSecond
fun getUnitsPerSecond(): Int
Gets the UnitsPerSecond of the response.
getUnitsPerTick
fun getUnitsPerTick(): Int
Gets the UnitsPerTick of the response.
getWallClock
fun getWallClock(): Long
Gets the System time (UTC) of the response.
writeToParcel
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 either 0 or a combination of android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE , and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES |