public
abstract
void
execute(String tagName, Map<String, Object> parameters)
Handler is given the tag name and a map of named parameters (the map may contain String,
Double, Boolean, Map, or List values).
The tagName is the same name by which the handler was registered. It's provided
as a convenience to allow a single handler to be registered for multiple function call
tags.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-09 UTC."],[[["`Container.FunctionCallTagHandler` is an interface used to execute custom tags within an application."],["Implementations of this interface must define the `execute` method, which receives the tag name and a map of parameters to handle the tag's logic."],["The `execute` method is provided with the tag's name for potential use in cases where a single handler manages multiple tags."],["Parameters for the tag are passed to the `execute` method as a `Map` potentially containing `String`, `Double`, `Boolean`, `Map`, or `List` values."]]],["The `Container.FunctionCallTagHandler` interface allows applications to execute custom tags. It provides an `execute` method that receives the tag's name (`tagName`) and a map of parameters (`parameters`). The parameter map can contain various data types like String, Double, Boolean, Map, or List. The `tagName` corresponds to the registered handler's name, enabling a single handler to manage multiple tags. The `execute` method should be implemented to specify what to do when the tag is called.\n"]]