Class: CZTop::Socket::STREAM

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

Overview

Stream socket for the native pattern. This is useful when communicating with a non-ZMQ peer over TCP.

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

#<<, #now, #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, #raise_zmq_err, #to_ptr

Constructor Details

#initialize(endpoints = nil) ⇒ STREAM

Returns a new instance of STREAM.

Parameters:

  • endpoints (String) (defaults to: nil)

    endpoints to connect to



307
308
309
310
311
# File 'lib/cztop/socket/types.rb', line 307

def initialize(endpoints = nil)
  super

  attach_ffi_delegate(Zsock.new_stream(endpoints))
end