# Monday, January 14, 2008
« Snooze - A REST Framework for .NET | Main | VB.NET 9 as an HTML View Engine »

Wes Dyer's paper http://blogs.msdn.com/wesdyer/archive/2008/01/11/the-marvels-of-monads.aspx has a great introduction to using Monads in C# and specifically how to create a continuation Monad that leverages the LINQ syntax.

After a lot of re-reading and coding, I managed to construct an asynchronous web request program.

UPDATE: Added Select<T> method for the monad so "let" syntax works.

class Program
{
    static void Main(string[] args)
    {
        var requests = new[]
        {
            WebRequest.Create("
http://www.google.com/"),
            WebRequest.Create("
http://www.yahoo.com/"),
            WebRequest.Create("
http://channel9.msdn.com/")
        };
        var pages = from request in requests
            select
                from response in request.GetResponseAsync()
                let stream = response.GetResponseStream()
                from html in stream.ReadToEndAsync()
                select new { html, response };

        foreach (var page in pages)
        {
            page(d =>
            {
                Console.WriteLine(d.response.ResponseUri.ToString());
                Console.WriteLine(d.html.Substring(0, 40));
                Console.WriteLine();
            });
        }

        Console.ReadKey();
    }
}

The actual web requests are deferred until the for loop invokes each "page" method. If you run the example a few times, you see that the results come back in a non-deterministic order, as expected with concurrent asynchronous operations. In addition, the web response stream is read asynchronously. So the main thread is never blocked - in fact that's why we need the Console.ReadKey() at the end, to stop the process ending before the results come back!

I had to change the type of the continuations from what Wes used. Instead of Func<T, Answer> I am just using Action<T>. The following code implements the continuation monad and the additional WebRequest and Stream extension methods.

delegate void K<T>(Action<T> c);

static class Continuations
{
    public static K<T> ToContinuation<T>(this T value)
    {
        return c => c(value);
    }

    public static K<U> SelectMany<T, U>(this K<T> m, Func<T, K<U>> k)
    {
        return c => m(x => k(x)(c));
    }

    public static K<V> SelectMany<T, U, V>(this K<T> m, Func<T, K<U>> k, Func<T, U, V> s)
    {
        return m.SelectMany(x => k(x).SelectMany(y => s(x, y).ToContinuation<V>()));
    }

    public static K<U> Select<U, T>(this K<T> m, Func<T, U> k)
    {
        return c => m(x => c(k(x)));
    }

    public static K<WebResponse> GetResponseAsync(this WebRequest request)
    {
        return send => request.BeginGetResponse(result =>
        {
            var response = request.EndGetResponse(result);
            send(response);
        }, null);
    }

    public static K<string> ReadToEndAsync(this Stream stream)
    {
        return send =>
        {
            byte[] buffer = new byte[1024];
            StringBuilder sb = new StringBuilder();
            Func<IAsyncResult> readChunk = null;
            readChunk = () => stream.BeginRead(buffer, 0, 1024, result =>
            {
                int read = stream.EndRead(result);
                if (read > 0)
                {
                    sb.Append(Encoding.UTF8.GetString(buffer, 0, read));
                    readChunk();
                }
                else
                {
                    stream.Dispose();
                    send(sb.ToString());
                }
            }, null);
            readChunk();
        };
    }

}

I imagine we will see something like this come out of the Volta project soon. Hopefully, it will form a generic asynchronous library that we can all use with anything that implements the Begin/End Invoke pattern.

Monday, January 14, 2008 1:22:13 PM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |  Tracked by:
"Async WebRequest using LINQ syntax" (DotNetKicks.com) [Trackback]
"Asynchronous Programming using LINQ Syntax" (Noticias externas) [Trackback]
http://morningside.edu/mics/_notes/pages/paxil/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/prilosec/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/synthroid/index.html [Pingback]
http://blastpr.com/wiki/js/pages/effexor/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/clomid/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/prozac/index.html [Pingback]
http://blastpr.com/wiki/js/pages/cialis/index.html [Pingback]
http://blastpr.com/wiki/js/pages/hoodia/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/tramadol/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/ultram/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/celebrex/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/cialis/index.html [Pingback]
http://blastpr.com/wiki/js/pages/melatonin/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/effexor/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/nexium/index.html [Pingback]
http://blastpr.com/wiki/js/pages/cymbalta/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/cymbalta/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/claritin/index.html [Pingback]
http://blastpr.com/wiki/js/pages/coumadin/index.html [Pingback]
http://blastpr.com/wiki/js/pages/celexa/index.html [Pingback]
http://blastpr.com/wiki/js/pages/celebrex/index.html [Pingback]
http://blastpr.com/wiki/js/pages/prilosec/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/viagra/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/soma/index.html [Pingback]
http://blastpr.com/wiki/js/pages/tramadol/index.html [Pingback]
http://blastpr.com/wiki/js/pages/soma/index.html [Pingback]
http://blastpr.com/wiki/js/pages/rainbow-brite/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/celexa/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/lexapro/index.html [Pingback]
http://blastpr.com/wiki/js/pages/synthroid/index.html [Pingback]
http://pddownloads.com/docs/08296030/index.html [Pingback]
http://discussgod.com/cpstyles/docs/43932298/index.html [Pingback]
http://discussgod.com/cpstyles/docs/73291253/index.html [Pingback]
http://plantmol.com/docs/24471383/index.html [Pingback]
http://martinrozon.com/images/photos/docs/43274485/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/82710340/index.ht... [Pingback]
http://thebix.com/includes/compat/docs/29852280/index.html [Pingback]
http://slaterjohn.com/downloads/2col/28436634/index.html [Pingback]
http://blog.netmedia.hr/wp-includes/js/docs/44378735/index.html [Pingback]
http://seo4u.at/images/docs/72359352/index.html [Pingback]
http://coolioness.com/attachments/docs/03698289/index.html [Pingback]
http://blog.netmedia.hr/wp-includes/js/docs/91708760/index.html [Pingback]
http://plantmol.com/docs/99021843/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/06712704/index.ht... [Pingback]
http://split-dalmatia.com/split-dalmatia.com/images/docs/73811526/index.html [Pingback]
http://split-dalmatia.com/split-dalmatia.com/images/docs/34320152/index.html [Pingback]
http://temerav.com/images/menu/46200403/index.html [Pingback]
http://allfreefilms.com/wp-includes/js/46226552/index.html [Pingback]
http://pspdesktops.com/fileupload/store/docs/04061117/index.html [Pingback]
http://pspdesktops.com/fileupload/store/docs/33460308/index.html [Pingback]
http://thebix.com/includes/compat/docs/44694113/index.html [Pingback]
http://slaterjohn.com/downloads/2col/51579700/index.html [Pingback]
http://swellhead.netswellhead.net/docs/79619129/index.html [Pingback]
http://realestate.hr/templates/css/docs/36157459/index.html [Pingback]
http://witze-humor.de/templates/images/docs/83157240/index.html [Pingback]
http://coolioness.com/attachments/docs/83777724/index.html [Pingback]
http://jivest2006.com/docs/40579018/index.html [Pingback]
http://pspdesktops.com/fileupload/store/docs/18769945/index.html [Pingback]
http://martinrozon.com/images/photos/docs/61904307/index.html [Pingback]
http://thejohnslater.com/pix/img/docs/41914710/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/60974094/index.ht... [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/54089144/index.ht... [Pingback]
http://thebix.com/includes/compat/docs/51589391/index.html [Pingback]
http://legambitdufou.org/Library/docs/04618667/index.html [Pingback]
http://legambitdufou.org/Library/docs/15090396/index.html [Pingback]
http://realestate.hr/templates/css/docs/71546796/index.html [Pingback]
http://swellhead.netswellhead.net/docs/92808772/index.html [Pingback]
http://plantmol.com/docs/60217277/index.html [Pingback]
http://entartistes.ca/images/images/docs/81367526/index.html [Pingback]
http://split-dalmatia.com/split-dalmatia.com/images/docs/84431573/index.html [Pingback]
http://allfreefilms.com/wp-includes/js/27702077/index.html [Pingback]
http://thejohnslater.com/pix/img/docs/73486930/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/48335156/index.html [Pingback]
http://slaterjohn.com/downloads/2col/66689432/index.html [Pingback]
http://abaffy.net/i/img/viagra/ [Pingback]
http://sevainc.com/bad_denise/img/10/synthroid/ [Pingback]
http://easytravelcanada.info/js/pages/1/accutane/ [Pingback]
http://sevainc.com/bad_denise/img/8/paxil/ [Pingback]
http://easytravelcanada.info/js/pages/3/claritin/ [Pingback]
http://jemnemelodierecords.sk/img/viagra/ [Pingback]
http://birds.sk/img/viagra/ [Pingback]
http://sevainc.com/bad_denise/img/6/lexapro/ [Pingback]
http://easytravelcanada.info/js/pages/3/clomid/ [Pingback]
http://ina-tv.sk/img/cialis/ [Pingback]
http://abaffydesign.com/la/img/viagra/ [Pingback]
http://easytravelcanada.info/js/pages/10/soma/ [Pingback]
http://sevainc.com/bad_denise/img/4/cymbalta/ [Pingback]
http://easytravelcanada.info/js/pages/10/synthroid/ [Pingback]
http://easymexico.info/images/img/viagra/ [Pingback]
abaffy.org/la/img/cialis/ [Pingback]
http://easytravelcanada.info/js/pages/5/effexor/ [Pingback]
http://sevainc.com/bad_denise/img/9/prozac/ [Pingback]
http://easytravelcanada.info/js/pages/2/cialis/ [Pingback]
http://easytravelcanada.info/js/pages/12/viagra/ [Pingback]
http://easytravelcanada.info/js/pages/1/celebrex/ [Pingback]
http://easytravelcanada.info/js/pages/9/rainbow-brite/ [Pingback]
http://sevainc.com/bad_denise/img/5/hoodia/ [Pingback]
http://easycanada.info/js/pages/viagra/ [Pingback]
http://sevainc.com/bad_denise/img/5/effexor/ [Pingback]
http://sevainc.com/bad_denise/img/7/nexium/ [Pingback]
http://sevainc.com/bad_denise/img/2/cialis/ [Pingback]
http://ina-tv.sk/img/viagra/ [Pingback]
http://simplecanada.info/js/pages/13912893/ [Pingback]
http://easytravelcanada.info/js/pages/9/prozac/ [Pingback]
http://adventure-traveling.com/images/img/viagra/ [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/denise-davies-anal.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/access-to-sex-web-sites.ht... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/bikini-dare-pics.html [Pingback]
http://odin.net/images/pages/35694472/index.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/gay-zoo.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/old-film-girl-in-love-with-... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/porn-star-brooke-banner.ht... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/lisa-rowe-girl-interrupted.... [Pingback]
http://odin.net/images/pages/52807681/index.html [Pingback]
http://odin.net/images/pages/52807681/lolita-boy-nude-pics.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/porn-postcards-free.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/pics-of-sexy-women-in-west... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/marriage-sex-life.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/nude-sleeping-sex-xxx.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/blonde-porn-star.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/sexy-makeup-pics.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/lindsay-lohan-nude-picture... [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/i-need-free-party-ideas-for... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/baby-pool.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/la-blue-girl-free-download... [Pingback]
http://odin.net/images/pages/35694472/xxx-message-boards.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/girl-teen-underwear.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/free-little-amateur-thumbs.... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/taylor-hayes-free-pics.htm... [Pingback]
http://odin.net/images/pages/52807681/all-fours-thumbnail-naked-girl.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/teen-doggystyle-fucking-fr... [Pingback]
http://odin.net/images/pages/52807681/naruto-hentai.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/pre-teen-posing-nude.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/jssica-simpson-fucking.html [Pingback]
http://odin.net/images/pages/52807681/sexy-thai.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/xxx-hardcore-she-males.htm... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/ametuer-zoo-girls.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/what-are-some-sex-hotline-... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/the-internet-is-for-porn.h... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/nauty-celebritys-having-sex... [Pingback]
http://odin.net/images/pages/35694472/sexy-female-escorts-in-delhi.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/teen-nude-school-bus.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/asian-woman-for-anal-sex.ht... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/adult-bib.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/caught-masturbating.html [Pingback]
http://odin.net/images/pages/35694472/babe-like-swim-video.html [Pingback]
http://odin.net/images/pages/35694472/sexy-pinup-girls.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/virgin-vagina-pic.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/sexual-protective-strategie... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/view-free-sex-scenes.html [Pingback]
http://odin.net/images/pages/35694472/kate-winslet-nude-scenes-in-jude.html [Pingback]
http://odin.net/images/pages/52807681/chimpanzee-sex.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/free-sex-positions-clips.h... [Pingback]
http://www.wowgoldtricks.com/phone/areas [Pingback]
http://feedjit.com/stats/callerbase.com/toppages/ [Pingback]
http://friendfeed.com/ninjaomatic [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-cialis-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-ambien-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-tramadol-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-soma-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-phentermine-online.ht... [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-viagra-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-hydrocodone-online.ht... [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-vicodin-online.html [Pingback]

Comments are closed.