Added in API level 33

SectionResponse


class SectionResponse : BroadcastInfoResponse, Parcelable

A response for Section from broadcast signal.

Inherited constants
Int CONTENTS_FILE_DESCRIPTOR

Descriptor bit used with describeContents(): indicates that the Parcelable object's flattened representation includes a file descriptor.

Int PARCELABLE_WRITE_RETURN_VALUE

Flag for use with writeToParcel: the object being written is a return value, that is the result of a function such as "Parcelable someFunction()", "void someFunction(out Parcelable)", or "void someFunction(inout Parcelable)". Some implementations may want to release resources at this point.

Int RESPONSE_RESULT_CANCEL

Response result: cancel. This means the request has been cancelled.

Int RESPONSE_RESULT_ERROR

Response result: error. This means the request can not be set up successfully.

Int RESPONSE_RESULT_OK

Response result: OK. This means the request is set up successfully and the related responses are normal responses.

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
Int getRequestId()

Gets the ID of the request.

The ID is used to associate the response with the request.

Int getResponseResult()

Gets the result for the response.

Int getSequence()

Gets the sequence number which indicates the order of related responses.

Int getType()

Gets the broadcast info type.

The type indicates what broadcast information is requested, such as broadcast table, PES (packetized Elementary Stream), TS (transport stream), etc. The type of the request and the related responses should be the same.

Public constructors

SectionResponse

Added in API level 33
SectionResponse(
    requestId: Int,
    sequence: Int,
    responseResult: Int,
    sessionId: Int,
    version: Int,
    sessionData: Bundle?)

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!>