This snippet demonstrates programming using asynchronous sequences. It contains (hidden) implementation of AsyncSeq type and combinators for working with it. More importantly, it demonstrates how to use asynchronous sequences to implement a simple sequential on-demand crawler.
10 people like thisPosted: 13 years ago by Tomas Petricek
An F#-style API for simple MSMQ operations, including Peek, Receive, and Send.
3 people like thisPosted: 6 years ago by Aaron Eshbach
A version of AsyncSeq.groupBy where the user can synchronously request all groups, but also all elements in each group during iteration and the operation does not deadlock.
0 people like thisPosted: 2 years ago by Tomas Petricek
The snippet uses asynchronous sequences (from F# AsyncExtensions) to download historical stock data from Yahoo. Data is downloaded in a buffered way on demand (as needed) and returned line by line. The sample then prints OHLC values for first 30 items.
6 people like thisPosted: 13 years ago by Tomas Petricek
F# Functional-style API for MSMQ, providing simple client operations like Send, Receive, and Peek.
3 people like thisPosted: 6 years ago by Aaron Eshbach