Front call answer
The Genero BDL API for GGC provides methods for answers to front call requests.
The ggc.FrontCallAnswer
type provides an API to build responses to function call
requests.
This section documents these front call related APIs. For an example of Genero BDL code using these methods, see Example: custom front call (BDL). This example features use of the methods: notProcessed(), stackError(), userError(), and success() as they are used in a front call implementation.
Method | Description |
---|---|
|
Initializes a front call answer object with "Function not found" error. |
|
Initializes a front call answer object with "Module not found" error. |
|
Leave the front call unprocessed. |
|
Adds an integer return value. |
|
Adds a string return value. |
|
Initializes a front call answer object with "Stack error" error. |
|
Initializes a front call answer object with SUCCESS
status. |
|
Initializes a front call answer object with custom error and error message. |