Giter Club home page Giter Club logo

Comments (10)

IanYates avatar IanYates commented on August 13, 2024

The Sync.ExcecuteTaskAsync(...) call seems to imply that TweetInvi has its own sync-to-async wrapper which is possibly making assumptions that don't quite hold in all cases. I only say this because in the TweetInvi wiki none of the examples I've come across so far seems to do anything async and there's no Sync.ExcecuteTaskAsync(...) to be found.

from asyncex.

IanYates avatar IanYates commented on August 13, 2024

Here's the awesome code ;)

https://github.com/linvi/tweetinvi/blob/master/Tweetinvi/Sync.cs#L43

I suspect the problem lies in there. Perhaps take that code, or a variant of it, into your own code and then you can step through it more easily. I'd add some logging in there too.

It really sounds like it's doing a sync-over-async style API (search the pfxteam blog for articles about that) which can be tricky.

from asyncex.

StephenCleary avatar StephenCleary commented on August 13, 2024

Thanks for bringing up those details, @IanYates.

The problem is that the default ITaskFactory.ExecuteTaskAsync implementation is using Task.Factory.StartNew without specifying a TaskScheduler. The default value for TaskScheduler is (unfortunately) TaskScheduler.Current, not TaskSchedler.Default.

Since AsyncContext uses TaskScheduler, this means the ITaskFactory is in fact trying to queue its work on the AsyncContext, not the ThreadPool.

from asyncex.

linvi avatar linvi commented on August 13, 2024

Thanks, for looking into this so quickly I will read your article and update the library if needed!

from asyncex.

JaneSmith avatar JaneSmith commented on August 13, 2024

Thanks for taking a look at this, both of you. For now, I have my project working by just waiting on Task.Result (since my project depends on TweetInvi, I can't just remove that), but I would like to be able to use AsyncContext with it. It sounds like the issue is with TweetInvi, then? Is that right?

from asyncex.

linvi avatar linvi commented on August 13, 2024

Quick question to you. I am well used to threads but I do have less knowledge on the async/await.

Quickly reading your article, would you agree that instead of await Task.Factory.StartNew(action);, I should use await TaskEx.Run(action);, or is defining the TaskCreateOption manually a better option?

from asyncex.

StephenCleary avatar StephenCleary commented on August 13, 2024

I would say to just call TaskEx.Run. There are several less-than-satisfactory defaults with StartNew. Since you're using Microsoft.Bcl.Async, a proper call would look something like Task.Factory.StartNew(action, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default), which is very long compared to TaskEx.Run(() => action()). :)

from asyncex.

StephenCleary avatar StephenCleary commented on August 13, 2024

The new version of AsyncContext hides the current TaskScheduler.

While I think this is technically incorrect, this kind of bug is found all over the place (almost all uses of StartNew/ContinueWith on the Internet are wrong). As such, the new AsyncContext goes out of its way to hide its TaskScheduler.

from asyncex.

linvi avatar linvi commented on August 13, 2024

With the new AsyncContext, will Tweetinvi need to upgrade/change some of the code?

from asyncex.

StephenCleary avatar StephenCleary commented on August 13, 2024

No, Tweetinvi doesn't have to change. The hiding of the TaskScheduler works around that bug.

However, I still do recommend using Task.Run (or at least specifying TaskScheduler.Default). It works with the new AsyncContext, but it may not work with other custom contexts.

from asyncex.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.