Azure / Azure-Functions

1.1k stars 189 forks source link

Assistance updating durable function using signalr to .NET 8 #2507

Open dirthsj opened 1 week ago

dirthsj commented 1 week ago

I have a durable function written for .NET 6 in-process that has an IAsyncCollector<SignalRMessage> binding. The function notifies the user each time it starts, and is fallible (due to services outside my control).

I'm not seeing any way to port this to .NET 8 Isolated process model, as the examples all show returning a signalr message at completion, which would not work for my use-case.

Please advise