Method: Qup::TopicAPI#publish

Defined in:
lib/qup/topic_api.rb

#publish(message) ⇒ Object

Internal: Publish a Message to all the Subscribers

message - the Object to send to all subscribers

Returns nothing

Raises:

  • (NotImplementedError)


88
89
90
# File 'lib/qup/topic_api.rb', line 88

def publish( message )
  raise NotImplementedError, "please implement 'publish'"
end