Added in API level 33
    TsResponse
class TsResponse : BroadcastInfoResponse, Parcelable
| kotlin.Any | ||
| ↳ | android.media.tv.BroadcastInfoResponse | |
| ↳ | android.media.tv.TsResponse | |
A response for TS (transport stream) from broadcast signal.
Summary
| Inherited constants | |
|---|---|
| Public constructors | |
|---|---|
| TsResponse(requestId: Int, sequence: Int, responseResult: Int, : String?) | |
| Public methods | |
|---|---|
| Int | |
| String? | Gets a token of SharedFilter. | 
| Unit | writeToParcel(dest: Parcel, flags: Int)Flatten this object in to a Parcel. | 
| Inherited functions | |
|---|---|
| Properties | |
|---|---|
| static Parcelable.Creator<TsResponse!> | |
Public constructors
TsResponse
Added in API level 33
      TsResponse(
requestId: Int,
sequence: Int,
responseResult: Int,
: String?)
| 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 | 
| sharedFilterToken | String?: 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 0orandroid.os.Parcelable#CONTENTS_FILE_DESCRIPTOR | 
getSharedFilterToken
Added in API level 33
      fun getSharedFilterToken(): String?
Gets a token of SharedFilter.
The token can be used to retrieve the transport stream from the filter.
| Return | |
|---|---|
| String? | This value may be null. | 
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 | 
