Method: AzureClient::Message#get_content
- Defined in:
- lib/azure_client/message.rb
#get_content ⇒ Object
11 12 13 14 15 16 17 18 |
# File 'lib/azure_client/message.rb', line 11 def get_content content = @azure_message. begin Base64.decode64(content) rescue raise $!, "Failed to decode content of azure queue message, check to make sure message is encoded, exception: #{$!}" end end |