AI-generated Key Takeaways
-
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
executemethod is provided with a map of named parameters, which can contain various data types like String, Double, Boolean, Map, or List.
Callback that is provided by the application to execute a custom tag.
Public Method Summary
| abstract void |
execute(Map<String, Object>
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<String, Object> 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.