> For the complete documentation index, see [llms.txt](https://zuberman-studio.gitbook.io/eznotifications-ue-plugin/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://zuberman-studio.gitbook.io/eznotifications-ue-plugin/getting-started/concurrent-notifications.md).

# Concurrent Notifications

Some RPG games like Destiny, for example, show what loot was added to your inventory once you've picked up some items using notifications.\
The concurrent notifications are built to do the very same thing easily.

Here is an example of 4 concurrent notifications with a duration timeline:

<figure><img src="https://765684267-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FeMDT7jI1SOViaDhhfRbe%2Fuploads%2FysMihEns3eZI7d42tsyW%2FConcurrent3.png?alt=media&amp;token=7b41386e-7aae-483f-acab-e9ce15efda4a" alt=""><figcaption><p>Can be like picking 4 different items.</p></figcaption></figure>

To achieve that, you'll need to check IsConcurrent in the class defaults of your notification user widget (this setting can also be overridden on spawn).

<figure><img src="https://765684267-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FeMDT7jI1SOViaDhhfRbe%2Fuploads%2F7OCGHWxz5mTz2JjMwE0y%2FConcurrent1.png?alt=media&amp;token=75dfc839-e58d-474d-95c5-2368cea986a5" alt=""><figcaption><p>Priority, Interruption, and Per class are irrelevant when checking IsConcurrent.</p></figcaption></figure>

Add the notification as we did here: [Show Notification](/eznotifications-ue-plugin/getting-started/show-notification.md)

Then, by binding to the `OnNotificationAdded` event, check that the added widget is indeed concurrent, and add the returned UMG to a list, vertical stack, or other panel of your liking.

{% hint style="info" %}
There's also `OnNotificationRemoved` event delegate you can bind to.
{% endhint %}

When you add a concurrent notification it will not be shown right away like the regular notifications, because those user widgets are supposed to be added to some list.

<figure><img src="https://765684267-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FeMDT7jI1SOViaDhhfRbe%2Fuploads%2FRbfL0F08nGtPnsE0TjbJ%2FConcurrent2.png?alt=media&amp;token=9b6ac315-136c-4482-bea6-2f4c2bc2a547" alt=""><figcaption></figcaption></figure>
