Class: Celluloid::ZMQ::ReqSocket

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

Overview

ReqSockets are the counterpart of RepSockets (REQ/REP)

Instance Attribute Summary

Attributes inherited from Socket

#linger

Instance Method Summary collapse

Methods included from WritableSocket

#write

Methods included from ReadableSocket

#bind, #connect, #read

Methods inherited from Socket

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

Constructor Details

#initializeReqSocket

Returns a new instance of ReqSocket.



101
102
103
# File 'lib/celluloid/zmq/sockets.rb', line 101

def initialize
  super :req
end