
C# |
public interface AmazonSQS : IDisposable

All Members | Methods | ||||
Icon | Member | Description |
---|---|---|
![]() | AddPermission(AddPermissionRequest) |
Adds the specified permission(s) to a queue for the specified principal(s).
|
![]() | ChangeMessageVisibility(ChangeMessageVisibilityRequest) |
Extends the read lock timeout of a single message in a queue.
|
![]() | ChangeMessageVisibilityBatch(ChangeMessageVisibilityBatchRequest) |
Extends the read lock timeout of multiple messages in a queue.
|
![]() | CreateQueue(CreateQueueRequest) |
Creates a new queue, or returns the URL of an existing one.
|
![]() | DeleteMessage(DeleteMessageRequest) |
Unconditionally removes the specified message from the specified queue.
|
![]() | DeleteMessageBatch(DeleteMessageBatchRequest) |
Removes multiple messages from the specified queue.
|
![]() | DeleteQueue(DeleteQueueRequest) | Deletes the queue specified by the queue URL, regardless of whether the queue is empty. |
![]() | Dispose()()()() | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. (Inherited from IDisposable.) |
![]() | GetQueueAttributes(GetQueueAttributesRequest) |
Gets one or all attributes of a queue.
|
![]() | GetQueueUrl(GetQueueUrlRequest) |
Returns the URL of an existing queue.
|
![]() | ListDeadLetterSourceQueues(ListDeadLetterSourceQueuesRequest) |
Given a queue, lists the queues that are configured to use that queue as a Dead Letter Queue.
|
![]() | ListQueues(ListQueuesRequest) |
Returns a list of your queues. The maximum number of queues that can be returned is 1000.
|
![]() | ReceiveMessage(ReceiveMessageRequest) | Retrieves one or more messages from the specified queue, including the message body and message ID of each message. Messages returned by this action stay in the queue until you delete them. However, once a message is returned to a ReceiveMessage request, it is not returned on subsequent ReceiveMessage requests for the duration of the VisibilityTimeout. If you do not specify a VisibilityTimeout in the request, the overall visibility timeout for the queue is used for the returned messages. If a message is available in the queue, the call will return immediately. Otherwise, it will wait up to WaitTimeSeconds for a message to arrive. If you do not specify WaitTimeSeconds in the request, the queue attribute by the same name is used to determine how long to wait. You could ask for additional information about each message through the attributes. Attributes that can be requested are [SenderId, ApproximateFirstReceiveTimestamp, ApproximateReceiveCount, SentTimestamp]. |
![]() | RemovePermission(RemovePermissionRequest) |
Removes the permission with the specified statement id from the queue.
|
![]() | SendMessage(SendMessageRequest) |
Delivers a message to the specified queue.
|
![]() | SendMessageBatch(SendMessageBatchRequest) |
Sends multiple messages to a queue.
|
![]() | SetQueueAttributes(SetQueueAttributesRequest) | Sets the value of one or more queue attributes. Currently, you can set only one attribute per request. Valid attributes that can be set are [VisibilityTimeout, Policy, MaximumMessageSize, MessageRetentionPeriod, WaitTimeSeconds]. |