Click here to Skip to main content
Click here to Skip to main content

Timeout Functions

By , 11 Dec 2008
 
namespace TimeoutFunctions.Workers
{
    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Threading;

    internal abstract class BaseWorker : ITimeoutWorker
    {
        public abstract bool Start(DataCarrier dataCarrier);

        /// <summary>
        /// Executes the supplied delegate by passing <paramref name="userState"/> object.
        /// </summary>
        /// <param name="userState">Object that can be used in the method where thread is executing</param>
        /// <param name="methodToExecute"><see cref="WaitCallback"/> instance</param>
        protected void ExecuteMethod(object userState, WaitCallback methodToExecute) {
            methodToExecute(userState);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of use 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 Code Project Open License (CPOL)

About the Author

N a v a n e e t h
Software Developer ThoughtWorks
India India
Member
Call me Navaneeth Some years ago--never mind how long precisely, I was doing programs with C and C++. When .NET came, I started with C#,ASP.NET and SQL Server.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 11 Dec 2008
Article Copyright 2008 by N a v a n e e t h
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid