DSAzure.TAzureQueueService.CreateQueue

From RAD Studio API Documentation
Jump to: navigation, search

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 */;

Properties

Type Visibility Source Unit Parent
function public
DSAzure.pas
DSAzure.hpp
DSAzure TAzureQueueService

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.

See Also