I’m looking to use the Aspose word API in my applications in the following way;
- Azure Function invokes your API to convert a document to PDF.
- Your API does the conversion and then saves the file to Azure Blog Storage
- Another Azure Function is triggered from Azure Blob Storage and does something else.
I’m using the WordsApi
to invoke a conversion from .doc
to .pdf
but the request, PostDocumentSaveAs
, is synchronous and I need to wait for this to complete. Unfortunately this can means my functions needs to wait which costs money and resources.
I was hoping your API would be asynchronous behind the scenes so I don’t have to keep a thread waiting. Fire and forget is not suitable in this case as I need to know the request was acknowledged your side as part of the main thread.
Is there any asynchronous API calls I can use?
This Topic is created by sohail.aspose using the Email to Topic plugin.