Class OrphanedTask

Assembly: redb.Core.dll

Orphaned deletion task found at startup.
Used for cluster-safe recovery of incomplete deletions.

public record OrphanedTask : IEquatable<OrphanedTask>

Inheritance

ObjectOrphanedTask

Implements

Properties

Deleted

Already deleted count

public int Deleted { get; init; }

OwnerId

User who initiated the deletion

public long OwnerId { get; init; }

Status

Current status

public string Status { get; init; }

Total

Total objects to delete

public int Total { get; init; }

TrashId

ID of the trash container

public long TrashId { get; init; }

Constructors

OrphanedTask(long, int, int, string, long)

Orphaned deletion task found at startup.