reloadPlacementForced

Overview

Requests placement reload. Works only if automatic reloading is disabled.

Syntax

reloadPlacementForced(placementName, forced, callback)

placementName (REQUIRED)

string Unique name of placement. The same name will be used in addapptr.com account.

forced (REQUIRED)

boolean If true, the placement will be reloaded even if other requirements like the minimum display time are not met.

callback(REQUIRED)

Callback<Boolean> Used to provide the function call result to JavaScript.

Parameters:

  • Boolean - True if call ends in causing a placement to reload, false otherwise.

Examples

RNAatkit.reloadPlacementForced("BannerPlacement", true, (placementReloaded) => {
                console.log("placementReloaded " + placementReloaded);
            });

Last updated