You are here

public function Base::isAsynchronous in Openlayers 7.3

Whether or not this object has to be processed asynchronously.

If true the map this object relates to won't be processes right away by Drupals behaviour attach.

Return value

int Return the number of asynchronous object contained in the parent object.

Overrides ObjectInterface::isAsynchronous

3 methods override Base::isAsynchronous()
GoogleMaps::isAsynchronous in src/Plugin/Source/GoogleMaps/GoogleMaps.php
Whether or not this object has to be processed asynchronously.
LazyProcessing::isAsynchronous in src/Plugin/Component/LazyProcessing/LazyProcessing.php
Whether or not this object has to be processed asynchronously.
Map::isAsynchronous in src/Types/Map.php
Whether or not this object has to be processed asynchronously.

File

src/Types/Base.php, line 496
Class Object.

Class

Base
Class Base.

Namespace

Drupal\openlayers\Types

Code

public function isAsynchronous() {
  return FALSE;
}