Class: Bunny::DefaultTopologyRecoveryFilter
- Inherits:
-
TopologyRecoveryFilter
- Object
- TopologyRecoveryFilter
- Bunny::DefaultTopologyRecoveryFilter
- Defined in:
- lib/bunny/topology_recovery_filter.rb
Overview
A no-op topology recovery filter. All methods return their inputs exactly as they are.
Instance Method Summary collapse
-
#filter_consumers(cs) ⇒ Array<Bunny::RecordedConsumer>
Returns the input without any filtering.
-
#filter_exchange_bindings(bs) ⇒ Array<Bunny::RecordedExchangeBinding>, Set<Bunny::RecordedExchangeBinding>
Returns the input without any filtering.
-
#filter_exchanges(xs) ⇒ Array<Bunny::RecordedExchange>
Returns the input without any filtering.
-
#filter_queue_bindings(bs) ⇒ Array<Bunny::RecordedQueueBinding>, Set<Bunny::RecordedQueueBinding>
Returns the input without any filtering.
-
#filter_queues(qs) ⇒ Array<Bunny::RecordedQueue>
Returns the input without any filtering.
Instance Method Details
#filter_consumers(cs) ⇒ Array<Bunny::RecordedConsumer>
Returns the input without any filtering.
69 |
# File 'lib/bunny/topology_recovery_filter.rb', line 69 def filter_consumers(cs); cs; end |
#filter_exchange_bindings(bs) ⇒ Array<Bunny::RecordedExchangeBinding>, Set<Bunny::RecordedExchangeBinding>
Returns the input without any filtering.
59 |
# File 'lib/bunny/topology_recovery_filter.rb', line 59 def filter_exchange_bindings(bs); bs; end |
#filter_exchanges(xs) ⇒ Array<Bunny::RecordedExchange>
Returns the input without any filtering.
49 |
# File 'lib/bunny/topology_recovery_filter.rb', line 49 def filter_exchanges(xs); xs; end |
#filter_queue_bindings(bs) ⇒ Array<Bunny::RecordedQueueBinding>, Set<Bunny::RecordedQueueBinding>
Returns the input without any filtering.
64 |
# File 'lib/bunny/topology_recovery_filter.rb', line 64 def filter_queue_bindings(bs); bs; end |
#filter_queues(qs) ⇒ Array<Bunny::RecordedQueue>
Returns the input without any filtering.
54 |
# File 'lib/bunny/topology_recovery_filter.rb', line 54 def filter_queues(qs); qs; end |