提交 79dfffa6 编写于 作者: C CyrusNajmabadi

Rename local function.

上级 73dad6c3
......@@ -75,13 +75,13 @@ internal partial class SQLitePersistentStorage
// Get the task that is responsible for doing the writes for this queue.
// This task will complete when all previously enqueued writes for this queue
// complete, and all the currently enqueued writes for this queue complete as well.
var writeTask = await GetWriteTask().ConfigureAwait(false);
var writeTask = await GetWriteTaskAsync().ConfigureAwait(false);
await writeTask.ConfigureAwait(false);
return;
// Local functions
async Task<Task> GetWriteTask()
async Task<Task> GetWriteTaskAsync()
{
// Have to acquire the semaphore. We're going to mutate the shared 'keyToWriteActions'
// and 'keyToWriteTask' collections.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册