什么是 Azure WebJobs SDK 3.0 版本的 host.Call()
Posted
技术标签:
【中文标题】什么是 Azure WebJobs SDK 3.0 版本的 host.Call()【英文标题】:What is the Azure WebJobs SDK 3.0 version of host.Call() 【发布时间】:2019-08-08 22:56:37 【问题描述】:在 WebJobs 2.0 中,我有一个 [NoAutomaticTriggers]
函数(称为 Start
),我将在启动 Azure WebJob 时手动执行它,如下所示:
var host = new JobHost(config);
host.Call(typeof(AccountingSystemSyncerFunctions).GetMethod("Start"));
host.RunAndBlock();
如何在 WebJobs SDK 3.0 中执行此操作?
【问题讨论】:
【参考方案1】:在Manual Triggers
下找到它
https://docs.microsoft.com/en-us/azure/app-service/webjobs-sdk-how-to#triggers
【讨论】:
以上是关于什么是 Azure WebJobs SDK 3.0 版本的 host.Call()的主要内容,如果未能解决你的问题,请参考以下文章
Azure WebJobs SDK TimerTrigger 函数未运行
在 Azure Webjobs SDK 中设置 nextVisibleTime
为啥我收到异常 Azure WebJobs SDK Dashboard connection string is missing or empty 当它根本不为空时?
Azure 服务总线:Microsoft.Azure.WebJobs.Script.HostDisposedException:主机已释放,无法使用