Class: Bunny::DefaultTopologyRecoveryFilter

Inherits:
TopologyRecoveryFilter show all
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

Instance Method Details

#filter_consumers(cs) ⇒ Array<Bunny::RecordedConsumer>

Returns the input without any filtering.

Parameters:

Returns:



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.

Parameters:

Returns:



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.

Parameters:

Returns:



54
# File 'lib/bunny/topology_recovery_filter.rb', line 54

def filter_queues(qs); qs; end