Skip to content

Instantly share code, notes, and snippets.

@bijukunjummen
Created May 3, 2020 00:24
Show Gist options
  • Save bijukunjummen/0033708a44a742ea85bed69bb5b4f271 to your computer and use it in GitHub Desktop.
Save bijukunjummen/0033708a44a742ea85bed69bb5b4f271 to your computer and use it in GitHub Desktop.
Processing SQS Messages using Project Reactor
# Create a queue
aws --endpoint http://localhost:4576 sqs create-queue --queue-name test-queue
# Send a sample message
aws --endpoint http://localhost:4576 sqs send-message --queue-url http://localhost:4576/queue/test-queue --message-body "Hello world"
# Receive the message
aws --endpoint http://localhost:4576 sqs receive-message --queue-url http://localhost:4576/queue/test-queue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment