h3ravel/framework

Feature: Implement queue worker for processing jobs

Open

#91 opened on Jan 23, 2026

View on GitHub
 (0 comments) (0 reactions) (0 assignees)TypeScript (14 forks)auto 404
@h3ravel/contracts@h3ravel/queuebackground-jobsenhancementglobal-typesgood first issue

Repository metrics

Stars
 (22 stars)
PR merge metrics
 (PR metrics pending)

Description

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