h3ravel/framework

Feature: Implement queue worker for processing jobs

Offen

#91 geöffnet am 23.01.2026

 (0 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)TypeScript (14 Forks)auto 404
@h3ravel/contracts@h3ravel/queuebackground-jobsenhancementglobal-typesgood first issue

Repository-Metriken

Stars
 (22 Sterne)
PR-Merge-Metriken
 (PR-Metriken ausstehend)

Beschreibung

Description: H3ravel needs a worker system to process queued jobs independently of the HTTP lifecycle.

This issue focuses on job execution, not dispatching.

Goals:

  • Worker process that pulls jobs from the queue
  • Executes job handle() method
  • Handles retries and failures
  • Graceful shutdown support

Acceptance Criteria:

  • Jobs are processed via worker
  • Failures trigger retry logic
  • Worker can run as a standalone process

Contributor Guide