Is it possible to create a service bus subscription and register a message handler? I'm a new to durable functions and quite concerned because of orchestrator code constraints, especially with this:
Orchestrator code must never initiate any async operation except by using the DurableOrchestrationContext API
Am I right that it will be impossible to register service bus message handler because it begins a new thread to receive messages and it is awaited on every time a new message is received?
Please notice that it's not a question about the service bus trigger. Actually this orchestration function should be triggered by service bus message in the queue but it also should perform a subscription to another service bus topic.