You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CLAUDE.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,12 +53,12 @@ Each `Process` runs an asyncio event loop with one or more pika `AsyncioConnecti
53
53
2.`Process.on_message` builds a `ProcessingContext` (Pydantic model) and schedules `invoke_consumer`
54
54
3.`invoke_consumer` decodes the body via `Codec`, then calls `consumer.execute(ctx)`
55
55
4.`_Consumer.execute` runs pre-validation (message type, retry limits), then delegates to `_run_consumer`
56
-
5.`Consumer._run_consumer` acquires a lock and calls `prepare()` → `process()` → `finish()`; `TransactionConsumer._run_consumer` calls them without a lock, passing `ctx` as an argument
56
+
5.`Consumer._run_consumer` acquires a lock and calls `prepare()` → `process()` → `finish()`; `FunctionalConsumer._run_consumer` calls them without a lock, passing `ctx` as an argument
57
57
6.`Process.on_processed` handles the result: ack, nack, requeue, or republish based on the `Result` enum
0 commit comments