Class: Celluloid::ZMQ::RepSocket

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

Overview

RepSockets are the counterpart of ReqSockets (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

#initializeRepSocket

Returns a new instance of RepSocket.



111
112
113
# File 'lib/celluloid/zmq/sockets.rb', line 111

def initialize
  super :rep
end