About 3,520,000 results
Open links in new tab
  1. Priority Queue pattern - Azure Architecture Center

    The priority queue pattern enables a workload to process high-priority tasks more quickly than lower-priority tasks. This pattern uses messages sent to one or more queues and is useful in applications …

  2. Queue-Based Load Leveling pattern - Azure Architecture Center

    Workload design An architect should evaluate how the Queue-Based Load Leveling pattern can be used in their workload's design to address the goals and principles covered in the Azure Well-Architected …

  3. java-design-patterns/event-queue/README.md at master - GitHub

    Intent of Event Queue Design Pattern The Event Queue pattern is designed to manage tasks in an asynchronous manner, allowing applications to handle operations without blocking user interactions …

  4. Design Patterns of Event-driven Architecture - DEV Community

    Jan 21, 2022 · Ambulance Pattern The ambulance pattern is used to handle the message priority correctly. The simple design for an emergency event is always put this event to the head of a queue, …

  5. Resilient design guidance for Event Hubs and Functions - Azure ...

    Aug 21, 2025 · Learn how to develop resilient and scalable code that runs on Azure Functions and responds to Event Hubs events.

  6. Event queue | Wiki hugo3m

    The pattern Events are stored in a queue. It is common for a game to have its own event queue. Event pattern allow to run code from another thread than the caller’s thread.

  7. Command Design Pattern - GeeksforGeeks

    Feb 26, 2026 · The Command Design Pattern is a behavioral design pattern that encapsulates a request as an object, thereby decoupling the sender of the request from the receiver and allowing flexible …

  8. Message Queues vs Event Streams in System Design

    Jul 23, 2025 · In system design, handling asynchronous communication and real-time data processing is crucial for building scalable, responsive, and robust applications. Two important architectural …

  9. Event-Driven Architecture (EDA) - GeeksforGeeks

    Mar 12, 2026 · Event-Driven Architecture (EDA) is a software design approach where system components communicate by producing and responding to events, such as user actions or system …

  10. SAGA Design Pattern - GeeksforGeeks

    Jul 23, 2025 · The SAGA Design Pattern is a pattern used to manage long-running and distributed transactions, particularly in microservices architecture. Unlike traditional monolithic transactions, …