Class: CZTop::Socket::REP
- Inherits:
-
CZTop::Socket
- Object
- CZTop::Socket
- CZTop::Socket::REP
- Defined in:
- lib/cztop/socket/types.rb
Overview
Reply socket for the ZeroMQ Request-Reply Pattern.
Constant Summary
Constants inherited from CZTop::Socket
Constants included from CZTop::SendReceiveMethods
CZTop::SendReceiveMethods::FD_TIMEOUT, CZTop::SendReceiveMethods::JIFFY
Instance Attribute Summary
Attributes inherited from CZTop::Socket
Attributes included from HasFFIDelegate
Instance Method Summary collapse
-
#initialize(endpoints = nil) ⇒ REP
constructor
A new instance of REP.
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_for_fd_signal, #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) ⇒ REP
Returns a new instance of REP.
114 115 116 117 118 |
# File 'lib/cztop/socket/types.rb', line 114 def initialize(endpoints = nil) super attach_ffi_delegate(Zsock.new_rep(endpoints)) end |