Class: EZMQ::Subscriber
Overview
Subscribe socket that listens for messages with an optional topic.
Instance Attribute Summary (collapse)
-
- (Object) action
Returns the value of attribute action.
Attributes inherited from Socket
#context, #decode, #encode, #socket
Instance Method Summary (collapse)
-
- (Publisher) initialize(**options)
constructor
Creates a new Subscriber socket.
-
- (void) listen {|message| ... }
By default, waits for a message and prints it to STDOUT.
-
- (Boolean) subscribe(topic)
Establishes a new message filter on the socket.
-
- (Boolean) unsubscribe(topic)
Removes a message filter (as set with subscribe) from the socket.
Methods inherited from Socket
#bind, #connect, #receive, #send
Constructor Details
- (Publisher) initialize(**options)
The default behaviour is to output and messages received to STDOUT.
Creates a new Subscriber socket.
218 219 220 221 |
# File 'lib/ezmq.rb', line 218 def initialize(**) super :connect, ZMQ::SUB, subscribe [:topic] if [:topic] end |
Instance Attribute Details
- (Object) action
Returns the value of attribute action
206 207 208 |
# File 'lib/ezmq.rb', line 206 def action @action end |
Instance Method Details
- (void) listen {|message| ... }
This method returns an undefined value.
By default, waits for a message and prints it to STDOUT.
256 257 258 259 260 261 262 263 264 |
# File 'lib/ezmq.rb', line 256 def listen loop do if block_given? yield receive else puts receive end end end |
- (Boolean) subscribe(topic)
By default, a Subscriber filters all incoming messages. Without
Establishes a new message filter on the socket.
calling subscribe at least once, no messages will be accepted. If topic was provided, #initialize calls #subscribe automatically.
prefix will be accepted.
234 235 236 |
# File 'lib/ezmq.rb', line 234 def subscribe(topic) @socket.setsockopt(ZMQ::SUBSCRIBE, topic) == 0 end |
- (Boolean) unsubscribe(topic)
Removes a message filter (as set with subscribe) from the socket.
245 246 247 |
# File 'lib/ezmq.rb', line 245 def unsubscribe(topic) @socket.setsockopt(ZMQ::UNSUBSCRIBE, topic) == 0 end |