blob: 831b892e4325e9d9b44a5298cc1cc96c4c44f6b2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.core.tests.runtime;
/**
* An abstract reader that continuously reads.
*/
abstract public class AbstractReader {
protected String name;
protected Thread readerThread;
protected boolean isStopping= false;
/*
* Creates a new reader with the given name.
*/
public AbstractReader(String name) {
this.name = name;
}
/**
* Continuously reads. Note that if the read involves waiting
* it can be interrupted and a InterruptedException will be thrown.
*/
abstract protected void readerLoop();
/**
* Start the thread that reads events.
*
*/
public void start() {
this.readerThread = new Thread(
new Runnable() {
public void run () {
readerLoop();
}
},
AbstractReader.this.name);
this.readerThread.start();
}
/**
* Tells the reader loop that it should stop.
*/
public void stop() {
this.isStopping= true;
if (this.readerThread != null)
this.readerThread.interrupt();
}
}