<!-- mobian-agent-page publisher="dailydev" canonical="https://daily.dev/posts/dynamic-events-in-abp-fb9iw4x61" -->

---
title: Dynamic Events in ABP | daily.dev
description: ABP Framework&#x27;s Dynamic Events feature extends the existing typed event bus with string-based publishing and subscription, removing the compile-time type...
canonical: https://daily.dev/posts/dynamic-events-in-abp-fb9iw4x61
twitter:card: summary_large_image
twitter:site: @dailydotdev
og:type: website
og:site_name: daily.dev
og:title: Dynamic Events in ABP | daily.dev
og:description: ABP Framework&#x27;s Dynamic Events feature extends the existing typed event bus with string-based publishing and subscription, removing the compile-time type...
og:url: https://daily.dev/posts/dynamic-events-in-abp-fb9iw4x61
og:image: https://api.daily.dev/og/posts/FB9Iw4X61.png
og:image:alt: Dynamic Events in ABP
og:image:width: 1200
og:image:height: 630
og:locale: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Dynamic Events in ABP

**[We Are .NET](https://daily.dev/sources/wearedotnet)** · 6 min read · 0 upvotes · 0 comments

## Summary

ABP Framework's Dynamic Events feature extends the existing typed event bus with string-based publishing and subscription, removing the compile-time type requirement. This enables plugin systems, external integrations, and low-code platforms to publish and handle events by name at runtime. Dynamic handlers receive a DynamicEventData object with the event name and raw payload. Typed and dynamic handlers coexist — when both are registered for the same event name, both fire. Dynamic events also benefit from the outbox/inbox reliability pipeline with no extra configuration. The feature works across all distributed providers (RabbitMQ, Kafka, Azure Service Bus, Rebus) except Dapr, which requires static topic declarations at startup.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://abp.io/community/posts/dynamic-events-in-abp-dukq95m1>

## Similar posts on daily.dev

- [Dynamic Background Jobs and Workers in ABP](https://daily.dev/posts/dynamic-background-jobs-and-workers-in-abp-uzemjg2uz) · We Are .NET · 0 upvotes · 0 comments
- [Azure APIM Simplifies Event-Driven Architecture with Native Service Bus Policy](https://daily.dev/posts/azure-apim-simplifies-event-driven-architecture-with-native-service-bus-policy-yx1qyd0f4) · InfoQ · 0 upvotes · 0 comments

---

Tags: [#architecture](https://daily.dev/tags/architecture), [#.net](https://daily.dev/tags/.net)

[View this post on daily.dev](https://daily.dev/posts/dynamic-events-in-abp-fb9iw4x61)

```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://daily.dev/#organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180},"sameAs":["https://twitter.com/dailydotdev","https://github.com/dailydotdev","https://www.linkedin.com/company/daily-dev-ltd"]},{"@type":"WebSite","@id":"https://daily.dev/#website","url":"https://daily.dev","name":"daily.dev","publisher":{"@id":"https://daily.dev/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://daily.dev/search?q={search_term_string}"},"query-input":"required name=search_term_string"}}]}
{"@context":"https://schema.org","@type":"TechArticle","headline":"Dynamic Events in ABP","url":"https://daily.dev/posts/dynamic-events-in-abp-fb9iw4x61","mainEntityOfPage":{"@type":"WebPage","@id":"https://daily.dev/posts/dynamic-events-in-abp-fb9iw4x61"},"datePublished":"2026-03-24T14:39:14.907Z","dateModified":"2026-03-24T14:39:57.125Z","description":"ABP Framework's Dynamic Events feature extends the existing typed event bus with string-based publishing and subscription, removing the compile-time type...","image":"https://media.daily.dev/image/upload/f_auto,q_auto/v1/posts/e8a6905e6c6c6f805b42f26edfa7b51e?_a=AQAEuop","thumbnailUrl":"https://media.daily.dev/image/upload/f_auto,q_auto/v1/posts/e8a6905e6c6c6f805b42f26edfa7b51e?_a=AQAEuop","isAccessibleForFree":true,"articleSection":"We Are .NET","inLanguage":"en","publisher":{"@type":"Organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180}},"author":{"@type":"Organization","name":"We Are .NET","logo":"https://media.daily.dev/image/upload/s--BsnVOa3i--/f_auto/v1718347410/logos/wearedotnet","url":"https://daily.dev/sources/wearedotnet"},"commentCount":0,"discussionUrl":"https://daily.dev/posts/dynamic-events-in-abp-fb9iw4x61","interactionStatistic":[{"@type":"InteractionCounter","interactionType":{"@type":"LikeAction"},"userInteractionCount":0},{"@type":"InteractionCounter","interactionType":{"@type":"CommentAction"},"userInteractionCount":0}],"keywords":"architecture,.net","timeRequired":"PT6M"}
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://daily.dev"},{"@type":"ListItem","position":2,"name":"We Are .NET","item":"https://daily.dev/sources/wearedotnet"},{"@type":"ListItem","position":3,"name":"Dynamic Events in ABP"}]}
```

