Class: Celluloid::ZMQ::PullSocket

Inherits:
Socket
  • Object
show all
Includes:
ReadableSocket
Defined in:
lib/celluloid/zmq/sockets.rb

Overview

PullSockets are the counterpart of PushSockets (PUSH/PULL)

Instance Attribute Summary

Attributes inherited from Socket

#linger

Instance Method Summary collapse

Methods included from ReadableSocket

#bind, #connect, #read

Methods inherited from Socket

#bind, #close, #connect, #identity, #identity=

Constructor Details

#initializePullSocket

Returns a new instance of PullSocket.



149
150
151
# File 'lib/celluloid/zmq/sockets.rb', line 149

def initialize
  super :pull
end