Namespace Virtufin.WorkManager.Services
Classes
- ApiLifecyclePublisher
Publishes worker lifecycle events to the virtufin-api's
system-eventstopic. Events are CloudEvents v1.0 envelopes with the WorkManager's URN as the source. The publisher is best-effort: failures are logged but never propagated, so an unreachable API does not break the WorkManager's worker state machine.
- AppMetrics
Application-level metrics for the WorkManager service.
- DaprCircuitBreakerHealthCheck
Health check that reports Dapr circuit breaker state.
- DaprResiliencePipeline
Provides resilience policies for Dapr operations with retry and circuit breaker. Constants are configurable via DaprResilienceOptions (env-var-driven).
- RecoveryHealthCheck
Health check that verifies worker recovery has completed successfully.
- RecoveryState
Tracks the state of worker recovery on startup. Used by the recovery health check to gate Kestrel readiness.
- ResilientDaprPublisher
Buffers outbound pub/sub messages during Dapr outages and flushes on reconnect.
- WorkManagerRecoveryHostedService
Hosted service that automatically recovers workers on application startup, gated by Enabled and coordinated across multiple WorkManager instances via RecoveryLeaderElector.
When multiple instances start concurrently, only the leader performs recovery — the others wait for the leader lease to expire (or be released) before they would attempt to take over. This avoids the N×W engine-load waste described in WM #4.
Kestrel readiness is gated via RecoveryHealthCheck:
Degradedwhile recovery is in progress.Unhealthyif recovery failed.Healthyonce recovery completes (whether this instance performed it or another leader did).
- WorkerProcessingRetryPipeline
Polly-based retry pipeline for worker business-logic processing failures, as distinct from DaprResiliencePipeline (which wraps Dapr/Gateway infra calls). Exhausting all attempts lets the caller's exception propagate so it can dead-letter the message -- see WorkerProcessingRetryOptions for why this exists as its own pipeline.
Interfaces
- IWorkerRecoveryExecutor
Abstraction over the WorkManager's recovery entry point. Allows the hosted service to be unit-tested without mocking the sealed
WorkManagerclass.