Right now, my function looks like this:
[Function(nameof(Functions.ProcessUpload))]
public void ProcessUpload([BlobTrigger("integration/{name}")] object blob, string name)
{
}
When triggered, parameter blob is an instance of System.ReadOnlyMemory<byte> type - meaning, all contents of the blog are provided in memory. All the examples I saw online have the parameter as a string. Neither System.ReadOnlyMemory<byte>, nor string are applicable in my case, since I need to be able to work with potentially 1GB+ big blobs.
With in-process functions, the blob parameter was of type Stream and everything worked. How can I process newly created blobs as streams with Isolated functions?