# Async Listeners No Join

The third use case is exactly the same scenario as the async listeners but with the exception that the caller will **not** wait for the spawned threads at all. This is accomplished by using the `asyncAllJoin=false` flag. This tells ColdBox to just spawn, return back a structure of thread information and continue execution of the calling code.

```javascript
var threadData = announce(
    state           = "onPageCreate", 
    data            = {}, 
    asyncAll        = true, 
    asyncAllJoin    = false
);
```

## Configuration Arguments

You can also combine this call with the following arguments:

* `asyncPriority` : The priority level of each of the spawned threads. By default it uses `normal` priority level

```javascript
var threadData = announce(
    state           = "onPageCreate", 
    data            = {}, 
    asyncAll        = true, 
    asyncAllJoin    = false,
    asyncPriority   = "high"
);
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://coldbox.ortusbooks.com/the-basics/interceptors/interceptor-asynchronicity/async-listeners-no-join.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
