Class: RightSupport::Net::LB::RoundRobin

Inherits:
Base show all
Defined in:
lib/right_support/net/lb/round_robin.rb

Instance Method Summary collapse

Methods inherited from Base

#bad, #good, #next, #set_endpoints

Constructor Details

#initialize(options = {}) ⇒ RoundRobin

Returns a new instance of RoundRobin.



26
27
28
# File 'lib/right_support/net/lb/round_robin.rb', line 26

def initialize(options = {})
  super
end

Instance Method Details

#health_check(endpoint) ⇒ Object



30
31
32
33
# File 'lib/right_support/net/lb/round_robin.rb', line 30

def health_check(endpoint)
  # no-op; round robin does not perform health checks
  true
end