DSAzure.TAzureQueueService.CreateQueue
| [–] Properties | |
|---|---|
| Type: function | |
| Visibility: public | |
| Source: DSAzure.pas DSAzure.hpp
| |
| Unit: DSAzure | |
| Parent: TAzureQueueService | |
Delphi
function CreateQueue(const QueueName: String): boolean; overload;
function CreateQueue(const QueueName: String; const MetaDataHeaders: TStringList): boolean; overload;
C++
bool __fastcall CreateQueue(const System::UnicodeString QueueName)/* overload */;
bool __fastcall CreateQueue(const System::UnicodeString QueueName, System::Classes::TStringList* const MetaDataHeaders)/* overload */;
Description
Creates a new queue.
CreateQueue creates a new queue in the queue service account it is connected to. The QueueName being passed in will be the name of the newly created queue. You can optionally specify a TStringList containing key-value pairs to associate with the queue as metadata.