We are using an Azure Function with Powershell in order to read messages from a Service Bus Queue. It operates with a Service Bus Queue Trigger. We would need to have an output binding in order to write messages into a difference Service Bus Queue. We are able to push the messages using Push-OutputBinding
. We also need to have a feature to Scheduled the queue message to the Service Bus. Is there a way to set to ScheduledEnqueueTimeUtc
property for the messages in the output binding?
Asked
Active
Viewed 351 times
0

Silly John
- 1,584
- 2
- 16
- 34
1 Answers
0
Please check the below findings to
Is there a way to set to
ScheduledEnqueueTimeUtc
property for the messages in the output binding?
As Per these GitHub Issues - Enhancement: Add Scheduled Queue Messages to Service Bus Binding Documentation and ScheduledEnqueueTimeUtc setting is not respected. it seems to be not supported this feature yet.
But there are few references that shows to use the Proper ScheduledEnqueueTimeUtc
value on BrokeredMessage
instance in an output binding and you'll need to use ICollector
for this output binding.
References: