Interface TopologyRecoveryFilter
-
public interface TopologyRecoveryFilterFilter to know whether entities should be recovered or not.- Since:
- 4.8.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanfilterBinding(RecordedBinding recordedBinding)Decides whether a binding is recovered or not.booleanfilterConsumer(RecordedConsumer recordedConsumer)Decides whether a consumer is recovered or not.booleanfilterExchange(RecordedExchange recordedExchange)Decides whether an exchange is recovered or not.booleanfilterQueue(RecordedQueue recordedQueue)Decides whether a queue is recovered or not.
-
-
-
Method Detail
-
filterExchange
boolean filterExchange(RecordedExchange recordedExchange)
Decides whether an exchange is recovered or not.- Parameters:
recordedExchange-- Returns:
- true to recover the exchange, false otherwise
-
filterQueue
boolean filterQueue(RecordedQueue recordedQueue)
Decides whether a queue is recovered or not.- Parameters:
recordedQueue-- Returns:
- true to recover the queue, false otherwise
-
filterBinding
boolean filterBinding(RecordedBinding recordedBinding)
Decides whether a binding is recovered or not.- Parameters:
recordedBinding-- Returns:
- true to recover the binding, false otherwise
-
filterConsumer
boolean filterConsumer(RecordedConsumer recordedConsumer)
Decides whether a consumer is recovered or not.- Parameters:
recordedConsumer-- Returns:
- true to recover the consumer, false otherwise
-
-