diff --git a/docs/recipes/README.md b/docs/recipes/README.md index 3a1416eba..a78f52e9b 100644 --- a/docs/recipes/README.md +++ b/docs/recipes/README.md @@ -92,6 +92,10 @@ Learn about the different file extensions supported by Lucee, including .cfm, .c Overview of different mapping types in the file system. +## [Function Listeners](/docs/recipes/function-listeners.md) + +This document explains how to use a Function Listeners in Lucee. + ## [Function SystemOutput #](/docs/recipes/function-systemoutput.md) This document explains the systemoutput function with some simple examples. @@ -164,10 +168,6 @@ The new CFDOCUMENT PDF engine, Flying Saucer in Lucee 5.3 How to pre-compile code for a production server while the source code is deployed to avoid compilation on the production server for security reasons. -## [Promises](/docs/recipes/promises.md) - -This document explains how to use a fPromises in Lucee. - ## [Query Async](/docs/recipes/query-async.md) Learn how to execute queries asynchronously in Lucee. This guide demonstrates how to set up asynchronous query execution using a simple flag. Examples include defining async execution for queries and using local listeners to handle exceptions. Additionally, function listeners introduced in Lucee 6.1 can be used for this purpose. diff --git a/docs/recipes/index.json b/docs/recipes/index.json index 17ae02eed..d400ed540 100644 --- a/docs/recipes/index.json +++ b/docs/recipes/index.json @@ -329,6 +329,19 @@ "File system" ] }, + { + "file": "function-listeners.md", + "title": "Function Listeners", + "path": "/docs/recipes/function-listeners.md", + "hash": "3eed91e1b537a74fa845a7d74746fad9", + "keywords": [ + "parallel", + "async", + "thread", + "function", + "romises" + ] + }, { "file": "function-systemoutput.md", "title": "Function SystemOutput #", @@ -571,19 +584,6 @@ "Lucee" ] }, - { - "file": "promises.md", - "title": "Promises", - "path": "/docs/recipes/promises.md", - "hash": "c8ceb48597bee59dea24e6bf6d61ca09", - "keywords": [ - "parallel", - "async", - "thread", - "function", - "romises" - ] - }, { "file": "query-async.md", "title": "Query Async",