FactoryData

class FactoryData<T>(val factory: MediaItemTracker.Factory<T>, val data: T)

Represents a pairing of a MediaItemTracker.Factory and its associated data.

Parameters

T

The type of data used by the factory.

Constructors

Link copied to clipboard
constructor(factory: MediaItemTracker.Factory<T>, data: T)

Properties

Link copied to clipboard
val data: T

The data of type T that will be passed to the tracker's start method.

Link copied to clipboard