core: rework synchronous group forwarding in receive loop into asynchronous delivery tasks (#6178)

This commit is contained in:
spaced4ndy
2025-09-12 13:22:34 +00:00
committed by GitHub
parent f2061a7c88
commit 382241fe3e
30 changed files with 2151 additions and 328 deletions
+21
View File
@@ -2131,6 +2131,7 @@ MemberSupport:
**Record type**:
- groupId: int64
- useRelays: bool
- localDisplayName: string
- groupProfile: [GroupProfile](#groupprofile)
- localAlias: string
@@ -3581,6 +3582,26 @@ InvalidQuote:
InvalidMention:
- type: "invalidMention"
InvalidDeliveryTask:
- type: "invalidDeliveryTask"
- taskId: int64
DeliveryTaskNotFound:
- type: "deliveryTaskNotFound"
- taskId: int64
InvalidDeliveryJob:
- type: "invalidDeliveryJob"
- jobId: int64
DeliveryJobNotFound:
- type: "deliveryJobNotFound"
- jobId: int64
WorkItemError:
- type: "workItemError"
- errContext: string
---