TaskQueueManagerSendBroadcastMessage Method |
Sends a broadcast message to the passed task queue.
Namespace:
MFiles.VAF.Common.ApplicationTaskQueue
Assembly:
MFiles.VAF (in MFiles.VAF.dll) Version: 2.3.623.2
Syntaxpublic void SendBroadcastMessage(
string queueId,
string taskType,
byte[] taskData = null,
Vault vault = null
)
Public Sub SendBroadcastMessage (
queueId As String,
taskType As String,
Optional taskData As Byte() = Nothing,
Optional vault As Vault = Nothing
)
public:
void SendBroadcastMessage(
String^ queueId,
String^ taskType,
array<unsigned char>^ taskData = nullptr,
Vault^ vault = nullptr
)
Parameters
- queueId
- Type: SystemString
Task queue identifier. - taskType
- Type: SystemString
Task type handler id. - taskData (Optional)
- Type: SystemByte
Optional - Custom data bytes. - vault (Optional)
- Type: Vault
Optional, vault object to use for the call, defaults to Permanent vault.
See Also