We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40d68fa commit 3cd8fc5Copy full SHA for 3cd8fc5
1 file changed
pkg/internal/interception/interception.go
@@ -56,7 +56,11 @@ func (c *channel) Name() string {
56
return c.delegate.Name()
57
}
58
59
-func (c *channel) Send(ctx context.Context, m net.TaggedMarshaler) error {
+func (c *channel) Send(
60
+ ctx context.Context,
61
+ m net.TaggedMarshaler,
62
+ strategy ...net.RetransmissionStrategy,
63
+) error {
64
altered := c.rules(m)
65
if altered == nil {
66
// drop the message
0 commit comments