Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
548 views

What is the Scala equivalent of F#'s async workflows?

What is the Scala equivalent of F#'s async workflows? For example, how would following F# snippet translate to idiomatic Scala? open System.Net open Microsoft.FSharp.Control.WebExtensions let ...
5
votes
4answers
873 views

Parallelize code in nested loops

You always hear that functional code is inherently easier to parallelize than non-functional code, so I decided to write a function which does the following: Given a input of strings, total up the ...
4
votes
3answers
513 views

How to keep asynchronous parallel program code manageable (for example in C++)

I am currently working on a server application that needs to control a collection devices over a network. Because of this, we need to do a lot of parallel programming. Over time, I have learned that ...
4
votes
5answers
1k views

Is there an async version of DirectoryInfo.GetFiles / Directory.GetDirectories in dotNet?

Is there an asynchronous version of DirectoryInfo.GetFiles / Directory.GetDirectories in dotNet? I'd like to use them in an F# async block, and it'd be nice to have a version that can be called with ...
4
votes
2answers
732 views

Best practices to parallelize using async workflow

Lets say I wanted to scrape a webpage, and extract some data. I'd most likely write something like this: let getAllHyperlinks(url:string) = async { let req = WebRequest.Create(url) ...
3
votes
2answers
992 views

f# async web request, handling exceptions

I'm trying to use async workflows in f# to fetch several web requests. However, some of my requests are occasionally returning errors (e.g. http 500), and I don't know how to handle this. It appears ...
3
votes
2answers
795 views

Async Workflows in F#

I am a C# programmer, but I have a question about Async Workflows in F#. Supposing I have the following class in a C# class library: class File { IAsyncResult BeginReadAll(string fileName, ...
2
votes
2answers
81 views

Unexpected behavior with exception handling in async, possible bug?

I have stumbled upon a problem when calling a nested Async which happens to be null. An exception is raised but it can't be catched with any of the normal exception handling methods Async workflows ...
2
votes
2answers
163 views

Let! executing in sequence?

I was under the impression that let! in f# was smart enough to excute sequences of assignments in parallell. However, the following sample displays a different behavior, assignment of a,b,c seems to ...
1
vote
2answers
84 views

How do I use an async workflow in a Seq.pick in F#

I am new to functional programming in general and started learning F# recently. I wanted to use an async workflow returning Async<'U option> to pick an item in a Sequence. I find a nice Seq.pick ...