We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5979f45 + 55f3e6b commit 16d4555Copy full SHA for 16d4555
projects/client/RabbitMQ.Client/src/client/impl/ConsumerWorkService.cs
@@ -66,7 +66,7 @@ public WorkPool(IModel model)
66
public void Start()
67
{
68
#if NETFX_CORE
69
- Task.Factory.StartNew(Loop, TaskCreationOptions.LongRunning);
+ System.Threading.Tasks.Task.Factory.StartNew(Loop, System.Threading.Tasks.TaskCreationOptions.LongRunning);
70
#else
71
var thread = new Thread(Loop)
72
0 commit comments