If i search correctly SOSS .NET provider (4.5) does not support async/await pattern yet?
I mean NamedCacheAPI nor DotNetAPI does not provide methods like:
to be able to call it:
I find only (but in DotNetAPI):
Which can be wrapped by myself into Task<> but again, this is not solution for us because we using NamedCacheAPI.
Any ETA when you add async/await support for NET 4.5 client libraries?
I mean NamedCacheAPI nor DotNetAPI does not provide methods like:
Code:
async NamedCache.RetrieveAsync(string id, bool acquireLock): Task<Object>;
Code:
var obj = await cache.RetrieveAsync('myid', true);
Code:
IAsyncResult DataAccessor.BeginRead(...)
Any ETA when you add async/await support for NET 4.5 client libraries?