Tagged Questions
12
votes
2answers
745 views
Coroutines in C#
I am looking to implement co-routines (user schedualed threads) in c#. When using c++ I was previously using fibers. As I see on the internet fibers do not exist in C#. I would like to get simillar ...
8
votes
8answers
2k views
Design Pattern Alternative to Coroutines
Currently, I have a large number of C# computations (method calls) residing in a queue that will be run sequentially. Each computation will use some high-latency service (network, disk...).
I was ...
6
votes
1answer
539 views
Is there a way to implement Caliburn-like co-routines in VB.NET since there's no yield keyword
Note that I'm aware of other yield in vb.net questions here on SO.
I'm playing around with Caliburn lately. Bunch of great stuff there, including co-routines implementation.
Most of the work I'm ...
4
votes
4answers
1k views
Fibers in C#: are they faster than iterators, and have people used them?
So I was chatting with a colleague about fibers and turned up this paper from 2003 that describes a implementation of coroutines in C# using the Fiber API.
The implementation of Yield in this paper ...
3
votes
2answers
394 views
C# and Caliburn - RescueAttribute and Coroutines
I think I have found a situation where RescueAttribute is broken. Or maybe I am using co-routines incorrectly.
I have a ViewModel like this:
[Rescue("Rescue")]
class MyViewModel
{
//... left ...
3
votes
2answers
699 views
Overhead of Mono Tasklet/Co-Routines
What are the main performance overheads (gc/stack copying...) of the new Mono Continuations/Tasklet framework?
How does this overhead (coroutine performance / raw performance) compare to other ...
1
vote
1answer
61 views
Design alternatives to thread implementation of coroutines for converting a push method into a pull method
I have a collection class that holds lots of different types of data in a compressed format. In order to enumerate over all of the values in the collection is has an Execute(Query, IDataWriter) ...
1
vote
0answers
81 views
Proving My Coroutines Work
I just wrote a coroutine (as an exercise) implementation based on Mono Continuations (very weird experience). What are some ways / approaches that I should take to prove its correctness?
1
vote
4answers
225 views
c# yield and try-finally
If I have a coroutine as follows, will the code in the finally block get called?
public IEnumerator MyCoroutine(int input)
{
try
{
if(input > 10)
{
Console.WriteLine("Can't count ...
1
vote
1answer
143 views
Synchronizing thread communication?
Just for the heck of it I'm trying to emulate how JRuby generators work using threads in C#.
Also, I'm fully aware that C# has built in support for yield return, I'm just toying around a bit.
I ...
1
vote
1answer
178 views
Mono Continuations - Memory keeps increasing after store()
Here's Mono Continuations' continuation_store (...). From looking at the code below, it appears as though store() follows these two branches:
cont->saved_stack && num_bytes <= ...
0
votes
5answers
172 views
C# warning for unused variable in foreach
I've got the following code (simplified) :
IEnumerable MyFunc(...){
IAsyncResult res = mSocket.BeginReceive(mReceptionArray, 0, pNbBytes, SocketFlags.None, null, null);
while ...