Interface TopologyRecoveryFilter
-
public interface TopologyRecoveryFilter
Filter to know whether entities should be recovered or not.- Since:
- 4.8.0
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default 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 Detail
-
filterExchange
default boolean filterExchange(RecordedExchange recordedExchange)
Decides whether an exchange is recovered or not.- Parameters:
recordedExchange
-- Returns:
- true to recover the exchange, false otherwise
-
filterQueue
default boolean filterQueue(RecordedQueue recordedQueue)
Decides whether a queue is recovered or not.- Parameters:
recordedQueue
-- Returns:
- true to recover the queue, false otherwise
-
filterBinding
default boolean filterBinding(RecordedBinding recordedBinding)
Decides whether a binding is recovered or not.- Parameters:
recordedBinding
-- Returns:
- true to recover the binding, false otherwise
-
filterConsumer
default boolean filterConsumer(RecordedConsumer recordedConsumer)
Decides whether a consumer is recovered or not.- Parameters:
recordedConsumer
-- Returns:
- true to recover the consumer, false otherwise
-
-