module Nexaas::Throttle

Constants

VERSION

Public Class Methods

configuration() click to toggle source
# File lib/nexaas/throttle.rb, line 13
def self.configuration
  @configuration ||= Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/nexaas/throttle.rb, line 8
def self.configure
  yield(configuration) if block_given?
  configuration.check!
end