awesome-repositories.com
ब्लॉग
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 रिपॉजिटरी

Awesome GitHub RepositoriesTask Lifecycle Interceptions

Using client-side and server-side middleware hooks to modify job payloads before enqueuing or wrap execution logic for error handling.

Distinct from Property Interception Middleware: Distinct from Property Interception Middleware: focuses on job lifecycle hooks, not property getters/setters.

Explore 3 awesome GitHub repositories matching software engineering & architecture · Task Lifecycle Interceptions. Refine with filters or upvote what's useful.

Awesome Task Lifecycle Interceptions GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • riverqueue/riverriverqueue का अवतार

    riverqueue/river

    5,252GitHub पर देखें↗

    River is a transactional job queue and distributed job scheduler for Go that uses PostgreSQL for persistence and state management. It functions as a resumable task framework, allowing long-running background work to be broken into persisted steps that can resume from the last saved checkpoint after a failure. The system ensures strict data consistency by allowing background tasks to be enqueued and completed within the same database transaction as the primary application data. It distinguishes itself through a coordinator model that employs leader election to manage periodic and delayed tasks

    Provides middleware hooks to modify job payloads before enqueuing or wrap execution logic for error handling.

    Go
    GitHub पर देखें↗5,252
  • bogdanp/dramatiqBogdanp का अवतार

    Bogdanp/dramatiq

    5,136GitHub पर देखें↗

    Dramatiq is a distributed task queue and workload manager used to offload function execution to background workers. It functions as an asynchronous task orchestrator that enables the distribution of computational tasks across a cluster using a pluggable transport layer supporting RabbitMQ and Redis. The framework provides specialized tools for complex task orchestration, including the ability to link background jobs into sequences, pipelines, and barriers. It further manages distributed concurrency through the use of shared mutexes, rate limiters, and exponential backoff retries to prevent re

    Provides middleware hooks to modify job payloads before enqueuing and wrap execution logic for global behavior control.

    Pythondistributed-lockpythonrabbit
    GitHub पर देखें↗5,136
  • alecthomas/kongalecthomas का अवतार

    alecthomas/kong

    2,976GitHub पर देखें↗

    Kong is a declarative command line interface framework and parser for Go. It maps flags and positional arguments directly into typed Go structures using struct tags, allowing developers to define terminal interfaces through data models rather than manual parsing logic. The project functions as a configuration mapper that populates Go structures from a combination of command-line arguments, environment variables, and JSON files. It distinguishes itself by providing a dependency injection container to pass external services into command handlers and a plugin architecture for dynamic command reg

    Executes custom logic at specific stages, such as before resolving arguments or after applying inputs.

    Gocommand-linecommandsflags
    GitHub पर देखें↗2,976
  1. Home
  2. Software Engineering & Architecture
  3. Property Interception Middleware
  4. Task Lifecycle Interceptions

सब-टैग एक्सप्लोर करें

  • ORM Model HooksLifecycle events that trigger custom logic during database model creation, update, or deletion. **Distinct from Task Lifecycle Interceptions:** Distinct from Task Lifecycle Interceptions: targets database record state changes rather than asynchronous job payloads.
  • Parser Lifecycle HooksPluggable hooks that execute custom logic at predefined stages of the CLI parsing process. **Distinct from Task Lifecycle Interceptions:** Distinct from Task Lifecycle Interceptions: focuses on the parsing and resolution phase of a CLI rather than background job payloads.