DSAzure.TAzureQueueService.PutMessage
[–] Properties | |
---|---|
Type: function | |
Visibility: public | |
Source: DSAzure.pas DSAzure.hpp
| |
Unit: DSAzure | |
Parent: TAzureQueueService |
Delphi
function PutMessage(const QueueName: String; const MessageText: String; const TimeToLive: Integer = 0): boolean;
C++
bool __fastcall PutMessage(const System::UnicodeString QueueName, const System::UnicodeString MessageText, const int TimeToLive = 0x0);
Description
Adds a message to the specified queue.
PutMessage adds a message to the queue with the given name. TimeToLive
specifies how many seconds the message should remain in the queue before expiring. The default (and maximum) value for this is 7 days.