CustomTagProvider

  • CustomTagProvider is a callback interface for executing custom tags within an application.

  • The interface has one abstract method, execute, which is called from a background thread during event processing.

  • The execute method is provided with a map of named parameters, which can contain various data types like String, Double, Boolean, Map, or List.

public interface CustomTagProvider

Callback that is provided by the application to execute a custom tag.

Public Method Summary

abstract void
execute(Map<StringObject> parameters)
execute(Map) is given the map of named parameters (the map may contain String, Double, Boolean, Map, or List values).

Public Methods

public abstract void execute (Map<StringObject> parameters)

execute(Map) is given the map of named parameters (the map may contain String, Double, Boolean, Map, or List values).

This function will be called from a background thread during event processing. The container will cache one instance of this object and reuse it.