Tagged Questions
The retlang tag has no wiki summary.
2
votes
0answers
135 views
Up-to-date Retlang examples
All Retlang examples/tutorials I can find on the web seem to be quite old: e.g.
http://ayende.com/Blog/archive/2007/11/01/Retlang--Concurrency-Library-for-C.aspx
...
2
votes
7answers
277 views
Message-based multithreading or Thread Pool for a short and uncommon action?
I'm currently using Retlang for message-based multithreading in .NET, which is a great library. I've got no explicit locks anymore, every thread is doing its own business, managing its part of the ...
1
vote
1answer
147 views
Retlang: What is the best way to unsubscribe from a channel?
I'm not sure what is the best way to unsubscribe from a channel when using Retlang.
When you subscribe by calling ISubscriber<T>::Subscribe(...) you are returned an IUnsubscriber. This ...
1
vote
2answers
608 views
Bounded Queue scenario
I need to implement a producer/consumer bounded queue, multiple consumers against a single producer.
I have a push function that adds an item to the queue and then checks for maxsize. If we have ...
0
votes
1answer
582 views
Retlang input prioritization
What is the preferred way, if any, to handle
channel input in a prioritized fashion? Is there anything equivalent
to Scala's "reactWithin(0) { ... case TIMEOUT }" construct?