我的应用是 Azure Functions 应用,我在其中使用 Azure SignalR。我想减少此应用的 KeepAlive 时间。对于网络应用程序,我知道我们可以像这样更改 KeepAlive 间隔
public void ConfigureServices(IServiceCollection services)
{
services.AddSignalR(hubOptions =>
{
hubOptions.EnableDetailedErrors = true;
hubOptions.KeepAliveInterval = TimeSpan.FromMinutes(1);
});
}
但是如何在使用 signalR 的天蓝色函数应用程序中更改间隔?