Sha256: cdcff639fa088c7205201dddf924a753057a2b9c3a3f3d405a6129b4a0b66cd2

Contents?: true

Size: 1.49 KB

Versions: 17

Compression:

Stored size: 1.49 KB

Contents

# encoding: utf-8
module Moped
  module ReadPreference

    # Encapsulates behaviour around a secondary read preference.
    #
    # @since 2.0.0
    class SecondaryPreferred
      include Selectable

      # Get the name for the read preference on the server side.
      #
      # @example Get the name of the read preference.
      #   secondary_preferred.name
      #
      # @return [ Symbol ] :secondaryPreferred.
      #
      # @since 2.0.0
      def name
        :secondaryPreferred
      end

      # Select a secondary node from the cluster. If no secondary is available then
      # use a primary. If no primary is found then an exception will be raised.
      #
      # @example Read a secondary or primary node from the cluster.
      #   preference.with_node(cluster) do |node|
      #     node.command(ismaster: 1)
      #   end
      #
      # @note If tag sets are provided then secondary selection will need to
      #   match the provided tags.
      #
      # @param [ Cluster ] cluster The cluster of nodes to select from.
      #
      # @raise [ Errors::ConnectionFailure ] If no secondary or primary node was
      #   available in the cluster.
      #
      # @return [ Object ] The result of the block.
      #
      # @since 2.0.0
      def with_node(cluster, &block)
        with_retry(cluster) do
          begin
            cluster.with_secondary(&block)
          rescue Errors::ConnectionFailure
            cluster.with_primary(&block)
          end
        end
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/bundler/gems/moped-cf817ca58a85/lib/moped/read_preference/secondary_preferred.rb
moped-2.0.7 lib/moped/read_preference/secondary_preferred.rb
moped-2.0.6 lib/moped/read_preference/secondary_preferred.rb
moped-2.0.5 lib/moped/read_preference/secondary_preferred.rb
moped-2.0.4 lib/moped/read_preference/secondary_preferred.rb
moped-2.0.3 lib/moped/read_preference/secondary_preferred.rb
moped-2.0.2 lib/moped/read_preference/secondary_preferred.rb
moped-2.0.1 lib/moped/read_preference/secondary_preferred.rb
moped-2.0.0 lib/moped/read_preference/secondary_preferred.rb
moped-2.0.0.rc2 lib/moped/read_preference/secondary_preferred.rb
moped-2.0.0.rc1 lib/moped/read_preference/secondary_preferred.rb
moped-2.0.0.beta6 lib/moped/read_preference/secondary_preferred.rb
moped-2.0.0.beta5 lib/moped/read_preference/secondary_preferred.rb
moped-2.0.0.beta4 lib/moped/read_preference/secondary_preferred.rb
moped-2.0.0.beta3 lib/moped/read_preference/secondary_preferred.rb
moped-2.0.0.beta2 lib/moped/read_preference/secondary_preferred.rb
moped-2.0.0.beta lib/moped/read_preference/secondary_preferred.rb