Added ability to specify name of looping thread in constructor.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@859 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2002-10-05 23:45:59 +00:00
parent db316be504
commit 36a94d4326
@@ -1,5 +1,5 @@
// //
// $Id: LoopingThread.java,v 1.5 2001/10/03 02:20:05 mdb Exp $ // $Id: LoopingThread.java,v 1.6 2002/10/05 23:45:59 mdb Exp $
// //
// samskivert library - useful routines for java programs // samskivert library - useful routines for java programs
// Copyright (C) 2001 Michael Bayne // Copyright (C) 2001 Michael Bayne
@@ -30,6 +30,21 @@ import com.samskivert.Log;
*/ */
public class LoopingThread extends Thread public class LoopingThread extends Thread
{ {
/**
* Ye olde zero argument constructor.
*/
public LoopingThread ()
{
}
/**
* Ye olde zero argument constructor.
*/
public LoopingThread (String name)
{
super(name);
}
/** /**
* Requests that this thread shut itself down. The running flag will * Requests that this thread shut itself down. The running flag will
* be cleared and if this function is being called by an external * be cleared and if this function is being called by an external