module Ethon::Easy::Operations
This module contains the logic to prepare and perform an easy.
Public Instance Methods
Source
# File lib/ethon/easy/operations.rb, line 44 def cleanup handle.free end
Clean up the easy.
@example Perform clean up.
easy.cleanup
@return the result of the free which is nil
Source
# File lib/ethon/easy/operations.rb, line 13 def handle @handle ||= FFI::AutoPointer.new(Curl.easy_init, Curl.method(:easy_cleanup)) end
Returns a pointer to the curl easy handle.
@example Return the handle.
easy.handle
@return [ FFI::Pointer ] A pointer to the curl easy handle.
Source
# File lib/ethon/easy/operations.rb, line 19 def handle=(h) @handle = h end
Sets a pointer to the curl easy handle. @param [ ::FFI::Pointer ] Easy
handle that will be assigned.
Source
# File lib/ethon/easy/operations.rb, line 29 def perform @return_code = Curl.easy_perform(handle) if Ethon.logger.debug? Ethon.logger.debug { "ETHON: performed #{log_inspect}" } end complete @return_code end
Perform the easy request.
@example Perform the request.
easy.perform
@return [ Integer ] The return code.
Source
# File lib/ethon/easy/operations.rb, line 55 def prepare Ethon.logger.warn( "ETHON: It is no longer necessary to call "+ "Easy#prepare. It's going to be removed "+ "in future versions." ) end
Prepare the easy. Options
, headers and callbacks were set.
@example Prepare easy.
easy.prepare
@deprecated It is no longer necessary to call prepare.