kegaretail / react-native-rabbitmq

29 stars 56 forks source link

hi, i very interest and thank you #2

Closed dotnetnat closed 7 years ago

dotnetnat commented 7 years ago

how to publish send message?

timhonders commented 7 years ago

Hi,

I was on vacation so sorry for late reaction.

https://github.com/kegaretail/react-native-rabbitmq#usage

u need to send the message via the exchange

let message = 'test'; let routing_key = ''; let properties = { expiration: 10000 } exchange.publish(data, routing_key, properties)

kreactnative commented 7 years ago

thank you very much.