All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Alachisoft.NCache.Common.Threading.IThreadRunnable Maven / Gradle / Ivy

There is a newer version: 5.3.3
Show newest version
package Alachisoft.NCache.Common.Threading;

//
// In order to convert some functionality to Visual C#, the Java Language Conversion Assistant
// creates "support classes" that duplicate the original functionality.  
//
// Support classes replicate the functionality of the original code, but in some cases they are 
// substantially different architecturally. Although every effort is made to preserve the 
// original architecture of the application in the converted project, the user should be aware that 
// the primary goal of these support classes is to replicate functionality, and that at times 
// the architecture of the resulting solution may differ somewhat.
//


/**
 * This interface should be implemented by any class whose instances are intended
 * to be executed by a thread.
 */
public interface IThreadRunnable {
    /**
     * This method has to be implemented in order that starting of the thread causes the object's
     * run method to be called in that separately executing thread.
     */
    void Run();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy