Skip to content

2.6.1

Compare
Choose a tag to compare
@anaisbetts anaisbetts released this 06 Mar 02:04
· 1251 commits to main since this release

What's New

Shut It All Down

Akavache now has an easy way to shut itself down. Make sure to run this on app shutdown:

BlobCache.Shutdown().Wait()

Or if you're on WinRT:

var deferral = e.SuspendingOperation.GetDeferral();
await BlobCache.Shutdown();
deferral.Complete()

Other Stuff

  • Fix a bug where in certain situations, Akavache would deadlock (2917a5e)