It's certainly possible that people will want to store templates on the file system or in a database and so loading interfaces could be blocking.
We should add an async method to the IStubbleRenderer which calls an AsyncLoad method of IStubbleBuilder. For efficiency (since the majority of the calls should be non-blocking) the async interface should implement ValueTask
It's certainly possible that people will want to store templates on the file system or in a database and so loading interfaces could be blocking.
We should add an async method to the
IStubbleRenderer
which calls anAsyncLoad
method ofIStubbleBuilder
. For efficiency (since the majority of the calls should be non-blocking) the async interface should implementValueTask