Added in API level 33

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
SectionResponse(requestId: Int, sequence: Int, responseResult: Int, sessionId: Int, version: Int, sessionData: Bundle?)

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

Added in API level 33
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, or android.media.tv.BroadcastInfoResponse#RESPONSE_RESULT_CANCEL
sessionData Bundle?: This value may 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 0 or android.os.Parcelable#CONTENTS_FILE_DESCRIPTOR

getSessionData

Added in API level 33
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

Added in API level 33
fun getSessionId(): Int

Gets the Session Id of requested session.

getVersion

Added in API level 33
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

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 either 0 or a combination of android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES

Properties

CREATOR

Added in API level 33
static val CREATOR: Parcelable.Creator<SectionResponse!>