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, #read_multipart

Methods inherited from Socket

#bind, #close, #connect, #get, #identity, #identity=, #set

Constructor Details

#initializeRepSocket

Returns a new instance of RepSocket.



138
139
140
# File 'lib/celluloid/zmq/sockets.rb', line 138

def initialize
  super :rep
end