Added in API level 34

AdBuffer


class AdBuffer : Parcelable
kotlin.Any
   ↳ android.media.tv.AdBuffer

Buffer for advertisement data.

Summary

Inherited constants
Public constructors
AdBuffer(id: Int, mimeType: String, buffer: SharedMemory, offset: Int, length: Int, presentationTimeUs: Long, flags: Int)

Public methods
Int

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation.

Int

Gets the buffer flags for this ad buffer.

Int

Gets corresponding AD request ID.

Int

Gets the data length of this ad buffer.

String

Gets the mime type of the data.

Int

Gets the offset into the shared memory to begin mapping.

Long

Gets the presentation time.

SharedMemory

Gets the SharedMemory which stores the data.

Unit
writeToParcel(dest: Parcel, flags: Int)

Flatten this object in to a Parcel.

Properties
static Parcelable.Creator<AdBuffer!>

Public constructors

AdBuffer

Added in API level 34
AdBuffer(
    id: Int,
    mimeType: String,
    buffer: SharedMemory,
    offset: Int,
    length: Int,
    presentationTimeUs: Long,
    flags: Int)
Parameters
mimeType String: This value cannot be null.
buffer SharedMemory: This value cannot be null.
flags Int: Value is either 0 or a combination of the following:

Public methods

describeContents

Added in API level 34
fun describeContents(): Int

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. For example, if the object will include a file descriptor in the output of writeToParcel(android.os.Parcel,int), the return value of this method must include the CONTENTS_FILE_DESCRIPTOR bit.

Return
Int a bitmask indicating the set of special object types marshaled by this Parcelable object instance.
Value is either 0 or

getId

Added in API level 34
fun getId(): Int

Gets corresponding AD request ID.

Return
Int The ID of the ad request

getLength

Added in API level 34
fun getLength(): Int

Gets the data length of this ad buffer.

Return
Int The data length of this ad buffer in bytes.

getMimeType

Added in API level 34
fun getMimeType(): String

Gets the mime type of the data.

Return
String The mime type of the data.
This value cannot be null.

getOffset

Added in API level 34
fun getOffset(): Int

Gets the offset into the shared memory to begin mapping.

Return
Int The offset of this ad buffer in the shared memory in bytes.

getPresentationTimeUs

Added in API level 34
fun getPresentationTimeUs(): Long

Gets the presentation time.

Return
Long The presentation time in microseconds.

getSharedMemory

Added in API level 34
fun getSharedMemory(): SharedMemory

Gets the SharedMemory which stores the data.

Information on how the data in this buffer is formatted can be found using AdRequest.getMetadata()

This data lives in a SharedMemory instance because of the potentially large amount of data needed to store the ad. This optimizes the data communication between the ad data source and the service responsible for its display.

Return
SharedMemory The SharedMemory that stores the data for this ad buffer.
This value cannot be null.

writeToParcel

Added in API level 34
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 the following:

Properties

CREATOR

Added in API level 34
static val CREATOR: Parcelable.Creator<AdBuffer!>