Sha256: c72922a818e17f2912a7830ccd7482b0ab7619faaa3753596e3b14db25b6f8ee

Contents?: true

Size: 1.25 KB

Versions: 5

Compression:

Stored size: 1.25 KB

Contents

module ZMQ

  class ZeroMQError < StandardError
    attr_reader :source, :result_code, :error_code, :message

    def initialize source, result_code, error_code, message
      @source = source
      @result_code = result_code
      @error_code = error_code
      @message = "msg [#{message}], error code [#{error_code}], rc [#{result_code}]"
      super message
    end
  end # call ZeroMQError

  class NotSupportedError < ZeroMQError
  end


  class ContextError < ZeroMQError
    # True when the exception was raised due to the library
    # returning EINVAL.
    #
    # Occurs when he number of app_threads requested is less
    # than one, or the number of io_threads requested is
    # negative.
    #
    def einval?() EINVAL == @error_code; end

    # True when the exception was raised due to the library
    # returning ETERM.
    #
    # The associated context was terminated.
    #
    def eterm?() ETERM == @error_code; end

  end # class ContextError


  class MessageError < ZeroMQError
    # True when the exception was raised due to the library
    # returning ENOMEM.
    #
    # Only ever raised by the #Message class when it fails
    # to allocate sufficient memory to send a message.
    #
    def enomem?() ENOMEM == @error_code; end
  end

end # module ZMQ

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ffi-rzmq-2.0.7 lib/ffi-rzmq/exceptions.rb
ffi-rzmq-2.0.6 lib/ffi-rzmq/exceptions.rb
ffi-rzmq-2.0.5 lib/ffi-rzmq/exceptions.rb
ffi-rzmq-2.0.4 lib/ffi-rzmq/exceptions.rb
ffi-rzmq-2.0.1 lib/ffi-rzmq/exceptions.rb