You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/recipes/thread-task.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -30,9 +30,9 @@ Regular Threads have the following characteristics:
30
30
31
31
1.**Bound to current request**: With the help of CFThread you can always see what the thread is doing. With `action='join'` you can wait until the thread ends and join it. You can also call `action='terminate'` and end the thread. You always have control over the thread with the various actions.
32
32
33
-
2.**Runs only once**: The thread runs only once. It ends at the end of the Cfthread tag or if there is an exception.
33
+
2.**Runs only once**: The thread runs only once. It ends at the end of the cfthread tag or if there is an exception.
34
34
35
-
3.**It fails when it fails**: There is no special exception handling so when the thread fails it fails unless you have Cftry, cfcatch inside the thread and you have exception handling there.
35
+
3.**It fails when it fails**: There is no special exception handling so when the thread fails it fails unless you have cftry, cfcatch inside the thread and you have exception handling there.
0 commit comments