如何为 Azure Functions 实现自定义绑定?
How do I implement a custom binding for Azure Functions?
Azure Functions 附带一组固定的预先存在的绑定。
同时,Azure Functions是基于Web Jobs SDK的,有一些extensibility story。它允许创建自定义绑定类型,包括自定义触发器。
是否可以 运行 Azure Function 运行 中的那些自定义绑定?如果是,是否有关于如何做到这一点的教程或文档?如果没有,有计划吗?
一些示例使用场景将集成到非 Azure 产品(例如 Kafka)或自定义内部协议。
我们预览了 'Bring Your Own Binding' 功能'。有关示例和文档,请参阅 Extensibility for more details on the feature and WebJobsExtensionSamples。
此外,您可以跟踪功能 here
现在完全支持自定义输入和输出绑定。可以在 Azure WebJobs wiki 上找到更多信息:https://github.com/Azure/azure-webjobs-sdk/wiki/Creating-custom-input-and-output-bindings
This wiki describes how to define a custom binding extension for the WebJobs SDK. These same extensions can be used, without modification, in Azure Functions.
可在此处找到写入 Slack 通道的示例绑定:https://github.com/lindydonna/SlackOutputBinding
Azure Functions 附带一组固定的预先存在的绑定。
同时,Azure Functions是基于Web Jobs SDK的,有一些extensibility story。它允许创建自定义绑定类型,包括自定义触发器。
是否可以 运行 Azure Function 运行 中的那些自定义绑定?如果是,是否有关于如何做到这一点的教程或文档?如果没有,有计划吗?
一些示例使用场景将集成到非 Azure 产品(例如 Kafka)或自定义内部协议。
我们预览了 'Bring Your Own Binding' 功能'。有关示例和文档,请参阅 Extensibility for more details on the feature and WebJobsExtensionSamples。 此外,您可以跟踪功能 here
现在完全支持自定义输入和输出绑定。可以在 Azure WebJobs wiki 上找到更多信息:https://github.com/Azure/azure-webjobs-sdk/wiki/Creating-custom-input-and-output-bindings
This wiki describes how to define a custom binding extension for the WebJobs SDK. These same extensions can be used, without modification, in Azure Functions.
可在此处找到写入 Slack 通道的示例绑定:https://github.com/lindydonna/SlackOutputBinding