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.
1 parent 5979f45 commit 55f3e6bCopy full SHA for 55f3e6b
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