From 20eb60378644f9a7f7371fdb117a85fe8861dc07 Mon Sep 17 00:00:00 2001 From: Fritz Gerneth Date: Tue, 10 Feb 2026 07:25:01 +0000 Subject: [PATCH] Add paragraph on implementing custom resolvers for subscribers --- docs/pages/subscription.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/pages/subscription.md b/docs/pages/subscription.md index 19e5a980..b5efb2cb 100644 --- a/docs/pages/subscription.md +++ b/docs/pages/subscription.md @@ -293,6 +293,12 @@ final class DoStuffSubscriber } } ``` + +##### Custom Resolvers + +You can provide your own argument resolvers by implementing the `ArgumentResolver` interface. +This can be useful for providing direct access to custom headers or other data. + ### Setup and Teardown Subscribers can have one `setup` and `teardown` method that is executed when the subscription is created or deleted.