TaskProcessorBaseTSettingsSendBroadcastMessageSafeInTransaction Method |
Helper method used to send an application task queue broadcast message,
accounting for the potential that the task queue has been destroyed.
- If the task queue is not found, the RegisterTaskQueue() method is called, then the message creation
- is attempted a 2nd time.
Namespace:
MFiles.VAF.MultiserverMode
Assembly:
MFiles.VAF (in MFiles.VAF.dll) Version: 2.3.623.2
Syntaxpublic void SendBroadcastMessageSafeInTransaction(
Vault transactionalVault,
bool allowRetry,
string taskQueue,
string taskType,
byte[] taskData = null
)
Public Sub SendBroadcastMessageSafeInTransaction (
transactionalVault As Vault,
allowRetry As Boolean,
taskQueue As String,
taskType As String,
Optional taskData As Byte() = Nothing
)
public:
void SendBroadcastMessageSafeInTransaction(
Vault^ transactionalVault,
bool allowRetry,
String^ taskQueue,
String^ taskType,
array<unsigned char>^ taskData = nullptr
)
Parameters
- transactionalVault
- Type: Vault
Transactional vault. - allowRetry
- Type: SystemBoolean
When true, a retry attempt it permitted if the queue is not found. - taskQueue
- Type: SystemString
Task queue id. - taskType
- Type: SystemString
Task type. - taskData (Optional)
- Type: SystemByte
Immutable task data.
See Also