Click here to Skip to main content
15,881,715 members
Articles / General Programming / Threads

Declarative multithreading

Rate me:
Please Sign up or sign in to vote.
4.94/5 (39 votes)
13 Mar 2012CDDL19 min read 57.5K   862   139  
An introduction and proof of concept code for the idea of declarative multi threading in C#.
using System.Runtime.Remoting.Messaging;

namespace ThreadBound
{
    /// <summary>
    /// This is only a wrapper for the OneWayAttribute to make it more descriptive.
    /// You can use [OnyWay] directly, too. [AsyncThreaded] is more consistent with with the
    /// [FreeThreaded]-attribute. This attribute declares that the taged method should be
    /// executed asynchronously within the thread-context of the class.
    /// </summary>
    /// <remarks>
    /// Method with this attribute must not return any value (must be void) und must not have
    /// any out-paremters. An exception will be thrown if any of these prerequisite are not met.
    /// </remarks>
    public class AsyncThreadedAttribute : OneWayAttribute
    {
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)


Written By
Systems Engineer
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions