Skip to content

Commit 85d1fb2

Browse files
committed
address other policies
1 parent b60aea1 commit 85d1fb2

7 files changed

Lines changed: 1140 additions & 210 deletions

File tree

pkg/admin/dummy.go

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,106 @@ func (d *DummyPulsarAdmin) RemoveTopicCompactionThreshold(string, *bool) error {
106106
return nil
107107
}
108108

109+
func (d *DummyPulsarAdmin) RemoveTopicMessageTTL(string, *bool) error {
110+
return nil
111+
}
112+
113+
func (d *DummyPulsarAdmin) RemoveTopicMaxProducers(string, *bool) error {
114+
return nil
115+
}
116+
117+
func (d *DummyPulsarAdmin) RemoveTopicMaxConsumers(string, *bool) error {
118+
return nil
119+
}
120+
121+
func (d *DummyPulsarAdmin) RemoveTopicMaxUnackedMessagesPerConsumer(string, *bool) error {
122+
return nil
123+
}
124+
125+
func (d *DummyPulsarAdmin) RemoveTopicMaxUnackedMessagesPerSubscription(string, *bool) error {
126+
return nil
127+
}
128+
129+
func (d *DummyPulsarAdmin) RemoveTopicRetention(string, *bool) error {
130+
return nil
131+
}
132+
133+
func (d *DummyPulsarAdmin) RemoveTopicBacklogQuota(string, *bool, string) error {
134+
return nil
135+
}
136+
137+
func (d *DummyPulsarAdmin) RemoveTopicDeduplicationStatus(string, *bool) error {
138+
return nil
139+
}
140+
141+
func (d *DummyPulsarAdmin) RemoveTopicPersistence(string, *bool) error {
142+
return nil
143+
}
144+
145+
func (d *DummyPulsarAdmin) RemoveTopicDelayedDelivery(string, *bool) error {
146+
return nil
147+
}
148+
149+
func (d *DummyPulsarAdmin) RemoveTopicDispatchRate(string, *bool) error {
150+
return nil
151+
}
152+
153+
func (d *DummyPulsarAdmin) RemoveTopicPublishRate(string, *bool) error {
154+
return nil
155+
}
156+
157+
func (d *DummyPulsarAdmin) RemoveTopicInactiveTopicPolicies(string, *bool) error {
158+
return nil
159+
}
160+
161+
func (d *DummyPulsarAdmin) RemoveTopicSubscribeRate(string, *bool) error {
162+
return nil
163+
}
164+
165+
func (d *DummyPulsarAdmin) RemoveTopicMaxMessageSize(string, *bool) error {
166+
return nil
167+
}
168+
169+
func (d *DummyPulsarAdmin) RemoveTopicMaxConsumersPerSubscription(string, *bool) error {
170+
return nil
171+
}
172+
173+
func (d *DummyPulsarAdmin) RemoveTopicMaxSubscriptionsPerTopic(string, *bool) error {
174+
return nil
175+
}
176+
177+
func (d *DummyPulsarAdmin) RemoveTopicSchemaValidationEnforced(string, *bool) error {
178+
return nil
179+
}
180+
181+
func (d *DummyPulsarAdmin) RemoveTopicSubscriptionDispatchRate(string, *bool) error {
182+
return nil
183+
}
184+
185+
func (d *DummyPulsarAdmin) RemoveTopicReplicatorDispatchRate(string, *bool) error {
186+
return nil
187+
}
188+
189+
func (d *DummyPulsarAdmin) RemoveTopicDeduplicationSnapshotInterval(string, *bool) error {
190+
return nil
191+
}
192+
193+
func (d *DummyPulsarAdmin) RemoveTopicOffloadPolicies(string, *bool) error {
194+
return nil
195+
}
196+
197+
func (d *DummyPulsarAdmin) RemoveTopicAutoSubscriptionCreation(string, *bool) error {
198+
return nil
199+
}
200+
201+
func (d *DummyPulsarAdmin) RemoveTopicSchemaCompatibilityStrategy(string, *bool) error {
202+
return nil
203+
}
204+
205+
func (d *DummyPulsarAdmin) RemoveTopicProperty(string, *bool, string) error {
206+
return nil
207+
}
208+
109209
// Close is a fake implements of Close
110210
func (d *DummyPulsarAdmin) Close() error {
111211
return nil

0 commit comments

Comments
 (0)