Sha256: 94c13d3725a959e65a35a9a7b1c8fa15fce53bd3005d384da59032b2c3186c49

Contents?: true

Size: 721 Bytes

Versions: 2

Compression:

Stored size: 721 Bytes

Contents

# -*- encoding: utf-8 -*-

# Namespace for failover extensions.
module OnStomp::Failover
  # Raised if the supplied failover: URI is not properly formatted as
  # +failover:(uri,uri,...)?optionalParams=values+
  class InvalidFailoverURIError < OnStomp::OnStompError; end
  
  # Raised if the maximum number of retries is exceed when calling
  # {OnStomp::Failover::Client#connect}
  class MaximumRetriesExceededError < OnStomp::OnStompError; end
end

require 'onstomp/failover/uri'
require 'onstomp/failover/failover_configurable'
require 'onstomp/failover/failover_events'
require 'onstomp/failover/buffers'
require 'onstomp/failover/pools'
require 'onstomp/failover/client'
require 'onstomp/failover/new_with_failover'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
onstomp-1.0.2 lib/onstomp/failover.rb
onstomp-1.0.1 lib/onstomp/failover.rb