Interface TopologyRecoveryFilter
public interface TopologyRecoveryFilter
Filter to know whether entities should be recovered or not.
- Since:
- 4.8.0
-
Method Summary
Modifier and TypeMethodDescriptiondefault boolean
filterBinding
(RecordedBinding recordedBinding) Decides whether a binding is recovered or not.default boolean
filterConsumer
(RecordedConsumer recordedConsumer) Decides whether a consumer is recovered or not.default boolean
filterExchange
(RecordedExchange recordedExchange) Decides whether an exchange is recovered or not.default boolean
filterQueue
(RecordedQueue recordedQueue) Decides whether a queue is recovered or not.
-
Method Details
-
filterExchange
Decides whether an exchange is recovered or not.- Parameters:
recordedExchange
-- Returns:
- true to recover the exchange, false otherwise
-
filterQueue
Decides whether a queue is recovered or not.- Parameters:
recordedQueue
-- Returns:
- true to recover the queue, false otherwise
-
filterBinding
Decides whether a binding is recovered or not.- Parameters:
recordedBinding
-- Returns:
- true to recover the binding, false otherwise
-
filterConsumer
Decides whether a consumer is recovered or not.- Parameters:
recordedConsumer
-- Returns:
- true to recover the consumer, false otherwise
-