Class: EZMQ::Publisher
Overview
Publish socket that broadcasts messages with an optional topic.
Instance Attribute Summary
Attributes inherited from Socket
#context, #decode, #encode, #socket
Instance Method Summary collapse
-
#initialize(**options) ⇒ Publisher
constructor
Creates a new Publisher socket.
-
#send(message = '', topic: '', **options) ⇒ Fixnum
Sends a message on the socket, with an optional topic.
Methods inherited from Socket
Constructor Details
#initialize(**options) ⇒ Publisher
Creates a new Publisher socket.
14 15 16 |
# File 'lib/ezmq/publish.rb', line 14 def initialize(**) super :bind, ZMQ::PUB, end |
Instance Method Details
#send(message = '', topic: '', **options) ⇒ Fixnum
Sends a message on the socket, with an optional topic.
27 28 29 30 |
# File 'lib/ezmq/publish.rb', line 27 def send( = '', topic: '', **) = "#{ topic } #{ (options[:encode] || @encode).call message }" @socket.send_string end |