Skip to content

Instantly share code, notes, and snippets.

@renestein
Created May 26, 2014 09:13
Show Gist options
  • Save renestein/37a5ed8b13dd48685cfa to your computer and use it in GitHub Desktop.
Save renestein/37a5ed8b13dd48685cfa to your computer and use it in GitHub Desktop.
using System.Threading.Tasks;
namespace RStein.Async.Schedulers
{
public interface IProxyScheduler
{
bool DoTryExecuteTask(Task task);
TaskScheduler AsTplScheduler();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment