Sha256: 08a5ab24760a8b970a576a72a166aea6727e5a666a92e5b73b2e5cbdb8006a81

Contents?: true

Size: 1.21 KB

Versions: 61

Compression:

Stored size: 1.21 KB

Contents

module Ethon
  class Multi

    # This module provides the multi stack behaviour.
    module Stack

      # Return easy handles.
      #
      # @example Return easy handles.
      #   multi.easy_handles
      #
      # @return [ Array ] The easy handles.
      def easy_handles
        @easy_handles ||= []
      end

      # Add an easy to the stack.
      #
      # @example Add easy.
      #   multi.add(easy)
      #
      # @param [ Easy ] easy The easy to add.
      #
      # @raise [ Ethon::Errors::MultiAdd ] If adding an easy failed.
      def add(easy)
        return nil if easy_handles.include?(easy)

        code = Curl.multi_add_handle(handle, easy.handle)
        raise Errors::MultiAdd.new(code, easy) unless code == :ok
        easy_handles << easy
      end

      # Delete an easy from stack.
      #
      # @example Delete easy from stack.
      #
      # @param [ Easy ] easy The easy to delete.
      #
      # @raise [ Ethon::Errors::MultiRemove ] If removing an easy failed.
      def delete(easy)
        if easy_handles.delete(easy)
          code = Curl.multi_remove_handle(handle, easy.handle)
          raise Errors::MultiRemove.new(code, handle) unless code == :ok
        end
      end
    end
  end
end

Version data entries

61 entries across 60 versions & 8 rubygems

Version Path
ethon-0.8.0 lib/ethon/multi/stack.rb
ethon-0.7.4 lib/ethon/multi/stack.rb
ethon-0.7.3 lib/ethon/multi/stack.rb
ethon-0.7.2 lib/ethon/multi/stack.rb
ethon-0.7.1 lib/ethon/multi/stack.rb
ethon-0.7.0 lib/ethon/multi/stack.rb
ethon-0.6.3 lib/ethon/multi/stack.rb
ethon-0.6.2 lib/ethon/multi/stack.rb
ethon-0.6.1 lib/ethon/multi/stack.rb
ethon-0.6.0 lib/ethon/multi/stack.rb
ethon-0.5.12 lib/ethon/multi/stack.rb
ethon-0.5.11 lib/ethon/multi/stack.rb
ethon-0.5.10 lib/ethon/multi/stack.rb
ethon-0.5.9 lib/ethon/multi/stack.rb
ethon-0.5.8 lib/ethon/multi/stack.rb
ethon-0.5.7 lib/ethon/multi/stack.rb
ethon-0.5.6 lib/ethon/multi/stack.rb
ethon-0.5.4 lib/ethon/multi/stack.rb
ethon-0.5.3 lib/ethon/multi/stack.rb
ethon-0.5.2 lib/ethon/multi/stack.rb