Client library for AWS SQS with support for large messages, up to 2GB. This is a Clojure wrapper for https://github.com/awslabs/amazon-sqs-java-extended-client-lib
MIT License
3
stars
0
forks
source link
core api functions should take aws-config map directly instead of expecting sqs-client #59
because sqs-client is a POJO, so we don't want to expose that to the API. handle-queue takes config maps already. But since we're exposing a bunch of aws.sqs namespaced functions, those should be cleaned up too.
Perhaps instead of just re-defining those sqs ns fns into core, they all should have a thin wrapper to take aws-config and pass through sqs-client to their aws.sqs/* equivalent.
because sqs-client is a POJO, so we don't want to expose that to the API.
handle-queue
takes config maps already. But since we're exposing a bunch ofaws.sqs
namespaced functions, those should be cleaned up too.Perhaps instead of just re-defining those
sqs
ns fns into core, they all should have a thin wrapper to take aws-config and pass through sqs-client to theiraws.sqs/*
equivalent.