- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
SemaphoreSlim.WaitAsync
不管用。它跳转到 return currentToken.AccessToken
之前GetAccesTokenAsync
调用它已完成并抛出 NullException。我还尝试使用 AsyncLock、AsyncSemaphore 和我在网上阅读的其他一些方法,但在我的情况下似乎没有任何作用。
public static class HttpClientHelper
{
#region members
private static SemaphoreSlim semaphore = new SemaphoreSlim(1, 1);
private static Token currentToken;
#endregion
public static string GetAuthorizeToken(ref HttpClient client, string username, string password)
{
GetToken(client, username, password);
return currentToken.AccessToken;
}
private static async void GetToken(HttpClient client, string username, string password)
{
await semaphore.WaitAsync();
try
{
if (currentToken == null)
{
await GetAccesTokenAsync(client, username, password);
}
else if (currentToken.IsExpired)
{
await GetAccessTokenByRefreshToken(client);
}
}
finally
{
semaphore.Release();
}
}
private static async Task<Token> GetAccesTokenAsync(HttpClient client, string username, string password)
{
List<KeyValuePair<string, string>> requestBody = new List<KeyValuePair<string, string>>();
requestBody.Add(new KeyValuePair<string, string>("Username", username));
requestBody.Add(new KeyValuePair<string, string>("Password", password));
requestBody.Add(new KeyValuePair<string, string>("grant_type", "password"));
try
{
using (var urlEncodedContent = new FormUrlEncodedContent(requestBody))
{
var httpResponse = await client.PostAsync(new Uri(client.BaseAddress + "/api/authentication/token"), urlEncodedContent);
currentToken = await httpResponse.Content.ReadAsAsync<Token>(new[] { new JsonMediaTypeFormatter() });
}
return currentToken;
}
catch (Exception e)
{
Logers.Log.Error($"Error while getting the access token {e}");
return null;
}
}
}
最佳答案
您需要做的第一件事是更改您的 private static async void GetToken()
返回任务的方法声明:private static async Task GetToken()
.如果它不返回任务,您将无法等待它完成。 (正如 GSerg 所说,“async void”是“即发即忘”。)
从同步方法调用异步方法的最基本方法是使用 Task.Run(...).Wait()
, 如下所示。
注意拨打Task.Run(waitForSem).Wait();
这实际上是将异步调用转换为同步调用。
using System;
using System.Diagnostics;
using System.Threading;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main()
{
Parallel.Invoke(() => timeWaitForSem(1), () => timeWaitForSem(2));
Console.ReadLine();
}
static void timeWaitForSem(int id)
{
var sw = Stopwatch.StartNew();
Console.WriteLine($"Thread {id} is waiting for semaphore.");
Task.Run(waitForSem).Wait(); // <=== HERE is the important bit.
Console.WriteLine($"Thread {id} finished waiting for semaphore after {sw.Elapsed}.");
}
static async Task waitForSem()
{
await _semaphore.WaitAsync().ConfigureAwait(false);
// Keep hold of the semaphore for a while.
await Task.Delay(2000).ConfigureAwait(false);
_semaphore.Release();
}
static readonly SemaphoreSlim _semaphore = new SemaphoreSlim(1, 1);
}
}
该程序的输出将类似于:
Thread 1 is waiting for semaphore.
Thread 2 is waiting for semaphore.
Thread 1 finished waiting for semaphore after 00:00:02.0133882.
Thread 2 finished waiting for semaphore after 00:00:04.0316629.
你不能做的是简单地输入
waitForSem().Wait();
而不是
Task.Run(waitForSem).Wait();
,因为您很可能会以这种方式陷入死锁(尤其是从具有消息泵的应用程序(例如 WinForms)调用它时)。
Microsoft.VisualStudio.Threading.dll
.要使用它,您需要引用
Microsoft.VisualStudio.Threading.dll
或通过 NuGet 添加。
JoinableTaskFactory
,代码如下所示:
using System;
using System.Diagnostics;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.VisualStudio.Threading;
namespace ConsoleApp1
{
class Program
{
static void Main()
{
Parallel.Invoke(() => timeWaitForSem(1), () => timeWaitForSem(2));
Console.ReadLine();
}
static void timeWaitForSem(int id)
{
var sw = Stopwatch.StartNew();
Console.WriteLine($"Thread {id} is waiting for semaphore.");
_jtf.Run(async () => await waitForSem().ConfigureAwait(false));
Console.WriteLine($"Thread {id} finished waiting for semaphore after {sw.Elapsed}.");
}
static async Task waitForSem()
{
await _semaphore.WaitAsync().ConfigureAwait(false);
// Keep hold of the semaphore for a while.
await Task.Delay(2000).ConfigureAwait(false);
_semaphore.Release();
}
static readonly SemaphoreSlim _semaphore = new SemaphoreSlim(1, 1);
static readonly JoinableTaskFactory _jtf = new JoinableTaskFactory(new JoinableTaskContext());
}
}
关于c# - 为什么 SemaphoreSlim.WaitAsync 不起作用?它在 GetAccesTokenAsync 调用完成之前跳转到 "return currentToken.AccessToken",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63503496/
我试图找出在这种上下文中使用的 Wait 和 WaitAsync 的 SemaphoreSlim 使用之间的区别: private SemaphoreSlim semaphore = new Sema
我对 await 关键字的理解是,await 限定语句之后的代码在完成后作为该语句的延续运行。 因此以下两个版本应该产生相同的输出: public static Task Run(Semaph
SemaphoreSlim 的文档说“只有在所有其他操作都已完成时才应使用 Dispose”。 应该如何调整以下类,以便线程 B 可以在线程 A 等待 Async() 时调用 Dispose()。调用
首先,请原谅我的英语。我将在 Task.WhenAny 之后的附加代码中进行简要说明,我期望的是五个任务中至少有三个将被取消,但都圆满结束。当任务被取消时,SemaphoreSlim.WaitAsyn
我的应用程序正在使用 .NET 4。我正在使用 nuget package 来等待异步 在我的应用程序中,我想按如下方式在 sempahore WaitAsync 调用上进行等待。 Semaphore
我知道在同步世界中第一个片段是正确的,但是 WaitAsync 和 async/await 魔法又是什么呢?请给我一些 .net 内部信息。 await _semaphore.WaitAsync();
SemaphoreSlim.WaitAsync不管用。它跳转到 return currentToken.AccessToken之前GetAccesTokenAsync调用它已完成并抛出 NullExc
我是一名优秀的程序员,十分优秀!