SectionResponse
class SectionResponse : BroadcastInfoResponse, Parcelable
| kotlin.Any | ||
| ↳ | android.media.tv.BroadcastInfoResponse | |
| ↳ | android.media.tv.SectionResponse | |
A response for Section from broadcast signal.
Summary
| Inherited constants | |
|---|---|
| Public constructors | |
|---|---|
| Public methods | |
|---|---|
| Int | |
| Bundle | Gets the raw data of session. | 
| Int | Gets the Session Id of requested session. | 
| Int | Gets the Version number of requested session. | 
| Unit | writeToParcel(dest: Parcel, flags: Int)Flatten this object in to a Parcel. | 
| Inherited functions | |
|---|---|
| Properties | |
|---|---|
| static Parcelable.Creator<SectionResponse!> | |
Public constructors
SectionResponse
SectionResponse(
requestId: Int,
sequence: Int,
responseResult: Int,
sessionId: Int,
version: Int,
sessionData: Bundle?)
| Parameters | |
|---|---|
| responseResult | Int: Value is android.media.tv.BroadcastInfoResponse#RESPONSE_RESULT_ERROR,android.media.tv.BroadcastInfoResponse#RESPONSE_RESULT_OK, orandroid.media.tv.BroadcastInfoResponse#RESPONSE_RESULT_CANCEL | 
| sessionData | Bundle?: 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 0orandroid.os.Parcelable#CONTENTS_FILE_DESCRIPTOR | 
getSessionData
fun getSessionData(): Bundle
Gets the raw data of session. The sessionData field represents payload data of the session after session header, which includes version and sessionId.
| Return | |
|---|---|
| Bundle | This value cannot be null. | 
getSessionId
fun getSessionId(): Int
Gets the Session Id of requested session.
getVersion
fun getVersion(): Int
Gets the Version number of requested session. If it is null, value will be -1.
The consistency of version numbers between request and response depends on BroadcastInfoRequest.getOption(). If the request has RequestOption value REQUEST_OPTION_AUTO_UPDATE, then the response may be set to the latest version which may be different from the version of the request. Otherwise, response with a different version from its request will be considered invalid.
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 either0or a combination ofandroid.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES | 
