ModuleProxy
A ModuleProxy is to be used for proxying access to modules that are or were available to access from the main Tealium implementation.
Any external Module implementation that provides functionality expected to be used by a developer should wrap their access to Tealium through a ModuleProxy.
Functions
Link copied to clipboard
abstract fun <R> executeAsyncModuleTask(task: (T, Callback<TealiumResult<R>>) -> Unit): Single<TealiumResult<R>>
Eagerly executes a task for the Module. The task should use the provided callback to emit a result to the returned Observable.
Link copied to clipboard
Eagerly executes a task for the Module, with the result returned as a TealiumResult
Link copied to clipboard