Class: Celluloid::ZMQ::PushSocket

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

Overview

PushSockets are the counterpart of PullSockets (PUSH/PULL)

Instance Attribute Summary

Attributes inherited from Socket

#linger

Instance Method Summary collapse

Methods included from WritableSocket

#write

Methods inherited from Socket

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

Constructor Details

#initializePushSocket

Returns a new instance of PushSocket.



140
141
142
# File 'lib/celluloid/zmq/sockets.rb', line 140

def initialize
  super :push
end