Class: CZTop::Socket::GATHER

Inherits:
CZTop::Socket show all
Defined in:
lib/cztop/socket/types.rb

Overview

Scatter/gather pattern.

Constant Summary

Constants inherited from CZTop::Socket

TypeNames

Constants included from CZTop::SendReceiveMethods

CZTop::SendReceiveMethods::JIFFY

Instance Attribute Summary

Attributes inherited from CZTop::Socket

#last_tcp_port

Attributes included from HasFFIDelegate

#ffi_delegate

Instance Method Summary collapse

Methods inherited from CZTop::Socket

#CURVE_client!, #CURVE_server!, #bind, #close, #connect, #disconnect, #inspect, #last_endpoint, new_by_type, #unbind

Methods included from HasFFIDelegate::ClassMethods

#ffi_delegate, #from_ffi_delegate

Methods included from PolymorphicZsockMethods

#set_unbounded, #signal, #wait

Methods included from CZTop::SendReceiveMethods

#<<, #read_timeout, #receive, #wait_readable, #wait_writable, #write_timeout

Methods included from ZsockOptions

#fd, #options, #readable?, #to_io, #writable?

Methods included from HasFFIDelegate

#attach_ffi_delegate, #from_ffi_delegate, raise_zmq_err, #to_ptr

Constructor Details

#initialize(endpoints = nil) ⇒ GATHER

Returns a new instance of GATHER.

Parameters:

  • endpoints (String) (defaults to: nil)

    endpoints to connect to



386
387
388
389
390
# File 'lib/cztop/socket/types.rb', line 386

def initialize(endpoints = nil)
  super

  attach_ffi_delegate(Zsock.new_gather(endpoints))
end