如何让 Timer Trigger 借助队列消息调用 Queue Trigger?
How to make Timer Trigger call the Queue Trigger with the help of the queue messages?
例如,
我有 2 个队列触发器,它们将由 Timer Trigger 函数中的 2 个不同的队列触发器消息调用。我如何调用定时器中的触发器并自动发送消息,以便在触发定时器功能时它会使用 python 语言自动将消息发送到相应的队列?
提前致谢。
下面是Timer触发器调用队列触发器函数的示例代码
host.json
{
"version": "2.0",
"logging": {
"applicationInsights": {
"samplingSettings": {
"isEnabled": true,
"excludedTypes": "Request"
}
}
},
"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[1.*, 2.0.0)"
}
}
function.json
{
"scriptFile": "__init__.py",
"bindings": [
{
"name": "mytimer",
"type": "timerTrigger",
"direction": "in",
"schedule": "*/20 * * * * *"
}
]
}
有关更多信息,请查看相关的 and
例如, 我有 2 个队列触发器,它们将由 Timer Trigger 函数中的 2 个不同的队列触发器消息调用。我如何调用定时器中的触发器并自动发送消息,以便在触发定时器功能时它会使用 python 语言自动将消息发送到相应的队列?
提前致谢。
下面是Timer触发器调用队列触发器函数的示例代码
host.json
{
"version": "2.0",
"logging": {
"applicationInsights": {
"samplingSettings": {
"isEnabled": true,
"excludedTypes": "Request"
}
}
},
"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[1.*, 2.0.0)"
}
}
function.json
{
"scriptFile": "__init__.py",
"bindings": [
{
"name": "mytimer",
"type": "timerTrigger",
"direction": "in",
"schedule": "*/20 * * * * *"
}
]
}
有关更多信息,请查看相关的