(topic utils.TopicName, maxSubscriptions int)
| 2187 | } |
| 2188 | |
| 2189 | func (t *topics) SetMaxSubscriptionsPerTopic(topic utils.TopicName, maxSubscriptions int) error { |
| 2190 | return t.SetMaxSubscriptionsPerTopicWithContext(context.Background(), topic, maxSubscriptions) |
| 2191 | } |
| 2192 | |
| 2193 | func (t *topics) SetMaxSubscriptionsPerTopicWithContext( |
| 2194 | ctx context.Context, |
nothing calls this directly
no test coverage detected