Class: EZMQ::Puller
Overview
Pull socket that receives messages but does not send them.
Instance Attribute Summary
Attributes inherited from Socket
#context, #decode, #encode, #socket
Instance Method Summary (collapse)
-
- (Puller) initialize(mode = :bind, **options)
constructor
Creates a new Puller socket.
Methods inherited from Socket
#bind, #connect, #listen, #receive, #send
Constructor Details
- (Puller) initialize(mode = :bind, **options)
Creates a new Puller socket.
289 290 291 |
# File 'lib/ezmq.rb', line 289 def initialize(mode = :bind, **) super mode, ZMQ::PULL, end |