Akavache.Sqlite3.SqliteOperationQueue.ProcessItems(System.Collections.Generic.List)

Here are the examples of the csharp api class Akavache.Sqlite3.SqliteOperationQueue.ProcessItems(System.Collections.Generic.List) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

1. Example

Project: Akavache
Source File: OperationQueue.cs
void FlushInternal()
        {
            var newQueue = new BlockingCollection<OperationQueueItem>();
            var existingItems = Interlocked.Exchange(ref operationQueue, newQueue).ToList();

            ProcessItems(CoalesceOperations(existingItems));
        }

2. Example

Project: Akavache
Source File: OperationQueue.cs
public IDisposable Start()
        {
            if (start != null) return start;

            shoul/n ..... /n //View Source file for more details /n }