Liking cljdoc? Tell your friends :D

clj-sqs-extended.aws.sqs


<?cljmacro

(<? channel)

Same as <! but throws error if an error is returned from channel

Same as <! but throws error if an error is returned from channel
sourceraw docstring

build-create-queue-request-with-attributesclj

(build-create-queue-request-with-attributes
  name
  {:keys [fifo visibility-timeout-in-seconds kms-master-key-id
          kms-data-key-reuse-period]})
source

create-fifo-queue!clj

(create-fifo-queue! sqs-client queue-name)
(create-fifo-queue! sqs-client
                    queue-name
                    {:keys [visibility-timeout-in-seconds kms-master-key-id
                            kms-data-key-reuse-period]
                     :as opts})
source

create-standard-queue!clj

(create-standard-queue! sqs-client queue-name)
(create-standard-queue! sqs-client
                        queue-name
                        {:keys [visibility-timeout-in-seconds kms-master-key-id
                                kms-data-key-reuse-period]
                         :as opts})
source

delete-message!clj

(delete-message! sqs-client queue-url message)
source

delete-queue!clj

(delete-queue! sqs-client queue-url)
source

purge-queue!clj

(purge-queue! sqs-client queue-url)
source

receive-messagesclj

(receive-messages sqs-client queue-url)
(receive-messages sqs-client
                  queue-url
                  {:keys [wait-time-in-seconds] :or {wait-time-in-seconds 20}})
source

receive-to-channelclj

(receive-to-channel sqs-client queue-url opts)
source

send-fifo-messageclj

(send-fifo-message sqs-client queue-url message group-id)
(send-fifo-message sqs-client
                   queue-url
                   message
                   group-id
                   {:keys [format deduplication-id] :or {format :transit}})

Send a message to a FIFO queue.

Argments: sqs-client - The extended sqs-client via which the request shall be sent queue-url - the queue's URL message - The actual message/data to be sent message-group-id - A value that will be parsed as string to specify the group that this message belongs to. Messages belonging to the same group are guaranteed FIFO

Options: format - The format (currently :json or :transit) to serialize the outgoing message with (default: :transit) deduplication-id - A string used for deduplication of sent messages

Send a message to a FIFO queue.

Argments:
  sqs-client       - The extended sqs-client via which the request shall be sent
  queue-url        - the queue's URL
  message          - The actual message/data to be sent
  message-group-id - A value that will be parsed as string to specify the
                     group that this message belongs to. Messages belonging
                     to the same group are guaranteed FIFO

Options:
  format           - The format (currently :json or :transit) to serialize the outgoing
                     message with (default: :transit)
  deduplication-id - A string used for deduplication of sent messages
sourceraw docstring

send-messageclj

(send-message sqs-client queue-url message)
(send-message sqs-client
              queue-url
              message
              {:keys [format] :or {format :transit}})

Send a message to a standard queue.

Argments: sqs-client - The extended sqs-client via which the request shall be sent queue-url - the queue's URL message - The actual message/data to be sent

Options: format - The format (currently :json or :transit) to serialize the outgoing message with (default: :transit)

Send a message to a standard queue.

Argments:
  sqs-client - The extended sqs-client via which the request shall be sent
  queue-url  - the queue's URL
  message    - The actual message/data to be sent

Options:
  format     - The format (currently :json or :transit) to serialize the outgoing
               message with (default: :transit)
sourceraw docstring

sqs-ext-clientclj

(sqs-ext-client sqs-ext-config)
source

wait-and-receive-messages-from-sqsclj

(wait-and-receive-messages-from-sqs sqs-client queue-url wait-time-in-seconds)
source

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close