Peter Huene

Results 174 comments of Peter Huene

I also have another use case for this feature: I'm trying to get the absolute path to the source file being compiled. I embed this as metadata from a procedural...

Hmm, the extension should [automatically be installed](https://github.com/peterhuene/azure-functions-rs/blob/master/azure-functions/src/registry.rs#L15-L16) when running an application that makes use of SignalR bindings. Did you run into problems running the application?

Weird, I wonder if it's because 1.1.0 is out. I don't believe I ever explicitly installed the extension while developing the SignalR bindings. Without the extension installed and after running...

Hi @calvinbrown085. My apologies for the slow response. It's available to be picked up, but adding new bindings can be a bit more laborious than I'd ideally want it to...

Thanks for opening this! I agree there should be some mechanism to easily copy files into the generated script root, which doesn't currently exist.

I don't remember why it was excluded and I can't think of a reason why it should be off the top of my head (the "publishing" support hasn't gotten much...

The following functions need to be implemented on the Durable Functions HTTP client: * [`signal_entity`](https://docs.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-http-api#signal-entity) * [`query_entity`](https://docs.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-http-api#query-entity)

The following functions need to be implemented on `DurableOrchestrationContext`: * [`call_entity`](https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.webjobs.extensions.durabletask.idurableorchestrationcontext.callentityasync?view=azure-dotnet#Microsoft_Azure_WebJobs_Extensions_DurableTask_IDurableOrchestrationContext_CallEntityAsync_Microsoft_Azure_WebJobs_Extensions_DurableTask_EntityId_System_String_System_Object_) * [`call_http`](https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.webjobs.extensions.durabletask.idurableorchestrationcontext.callhttpasync?view=azure-dotnet) * [`is_locked`](https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.webjobs.extensions.durabletask.idurableorchestrationcontext.islocked?view=azure-dotnet) * [`lock`](https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.webjobs.extensions.durabletask.idurableorchestrationcontext.lockasync?view=azure-dotnet) * [`signal_entity`](https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.webjobs.extensions.durabletask.idurableorchestrationcontext.signalentity?view=azure-dotnet) * [`start_new_orchestration`](https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.webjobs.extensions.durabletask.idurableorchestrationcontext.startneworchestration?view=azure-dotnet)

We need to implement the [`DurableEntityContext` trigger binding](https://docs.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-bindings#entity-trigger).