Class: CZTop::Socket::PUSH
- Inherits:
-
CZTop::Socket
- Object
- CZTop::Socket
- CZTop::Socket::PUSH
- Defined in:
- lib/cztop/socket/types.rb
Overview
Push socket for the ZeroMQ Pipeline 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) ⇒ PUSH
constructor
A new instance of PUSH.
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) ⇒ PUSH
Returns a new instance of PUSH.
244 245 246 247 248 |
# File 'lib/cztop/socket/types.rb', line 244 def initialize(endpoints = nil) super attach_ffi_delegate(Zsock.new_push(endpoints)) end |