awesome-repositories.comBlog
© 2026 Bringes Technology SRL·VAT RO45896025·hello@bringes.io
MCPBlogSitemapPrivacyTerms
Event Messaging Systems · Awesome GitHub Repositories

1 repo

Awesome GitHub RepositoriesEvent Messaging Systems

Frameworks and patterns for decoupling components through asynchronous or synchronous event distribution.

Distinguishing note: Focuses on the mechanics of event delivery and subscriber management, distinct from general architectural patterns.

Explore 1 awesome GitHub repository matching software engineering & architecture · Event Messaging Systems. Refine with filters or upvote what's useful.

  1. Home
  2. Software Engineering & Architecture
  3. Event Messaging Systems

Awesome Event Messaging Systems GitHub Repositories

Describe the repository you're looking for…
Find the best repos with AI.We'll search the best matching repositories with AI.
  • greenrobot/EventBus

    greenrobot/EventBus

    24,760View on GitHub↗

    EventBus is a publish-subscribe messaging library designed to facilitate decoupled communication between components in Java applications. It functions as a central hub where producers dispatch events that are routed to subscribers based on the class type of the payload. By using annotation-based markers, the system maps event handlers to specific data types, allowing different parts of an application to exchange information without requiring direct references between classes. The library distinguishes itself through a focus on performance and execution control. It utilizes a compile-time inde

    Sorts subscribers by assigned weight values to ensure that event delivery follows a specific sequence across the messaging system.

    Java
    24,760View on GitHub↗