Data.Cloud.AzureAPI.TAzureQueueService.DeleteQueue
[–] Properties | |
---|---|
Type: function | |
Visibility: public | |
Source: Data.Cloud.AzureAPI.pas Data.Cloud.AzureAPI.hpp
| |
Unit: Data.Cloud.AzureAPI | |
Parent: TAzureQueueService |
Delphi
function DeleteQueue(const QueueName: string; ResponseInfo: TCloudResponseInfo = nil): Boolean;
C++
bool __fastcall DeleteQueue(const System::UnicodeString QueueName, Data::Cloud::Cloudapi::TCloudResponseInfo* ResponseInfo = (Data::Cloud::Cloudapi::TCloudResponseInfo*)(0x0));
Description
Deletes the queue with the given name.
Using DeleteQueue, the queue is marked for deletion and will not show up in queries, but there will be a short time before the server allows another queue with the same name to be created again.
The following table shows the significance of the parameters:
Parameter | Description |
---|---|
QueueName |
The name of the queue to delete. |
ResponseInfo |
The optional class for storing response info into. |
The method returns True if the operation is successful, and False otherwise.