Programming The Midlet; Threads; Example - Siemens TC45 User Manual

Cellular engine
Hide thumbs Also See for TC45:
Table of Contents

Advertisement

TC45 TC45 JAVA User's Guide
Confidential / Released

11.2 Programming the MIDlet

The life cycle and structure of MIDlets are described in Chapter 5. Since the MIDlets will run
on J2ME™, all of J2ME™'s features, including threads, are available. Small applications,
such as those without any timer functions or those used only for tests and simple examples,
can be written without using threads. Longer applications should be implemented with

threads.

11.2.1
Threads
Although small applications can be written without using threads longer applications should
use them. The Java programming language is naturally multi-threaded which can make a
substantial difference in the performance of your application. Therefore we recommend
referring to Java descriptions on threads before making any choices about threading models.
Threads can be created in two ways. A class can be a subclass of Thread or it can
implement Runnable.
For example, threads can be launched in startApp() and destroyed in destroyApp(). Note
that destroying Java threads can be tricky. It is recommended that the developer read the
Java documentation on threads. It may be necessary to poll a variable within the thread to
see if it is still alive.
11.2.2

Example

/* This example derives a class from Thread and creates two instances
* of the subclass. One thread instance finishes itself, the other one
* is stopped by the main application. */
package example.threaddemo;
import javax.microedition.midlet.*;
public class ThreadDemo extends MIDlet {
/* Member variables */
boolean
runThreads = true; // Flag for stopping threads
DemoThread thread1;
DemoThread thread2;
/* Private class implementing the thread to be started by the
* main application */
private class DemoThread extends Thread {
int loops;
public DemoThread(int waitTime) {
/* Store number of loops to execute */
loops = waitTime;
System.out.println("Thread(" + loops + "): Created");
}
public void run() {
System.out.println("Thread(" + loops + "): Started");
for (int i = 1; i <= loops; i++) {
/* Check if main application asked thread to die */
if (runThreads != true) {
System.out.println("Thread(" + loops + "): Stopped from outside");
/* Leave thread */
return;
}
/* Print loop counter and wait 1 second,
* do something useful here instead */
TC45_JAVA User's Guide_V02
// First instance of DemoThread
// Second instance of DemoThread
Page 68 of 72
30.06.2003

Hide quick links:

Advertisement

Table of Contents
loading

Table of Contents