KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > proactive > ext > benchsocket > ShutdownThread


1 package org.objectweb.proactive.ext.benchsocket;
2
3 public class ShutdownThread extends Thread JavaDoc {
4     BenchStream bos;
5
6     public ShutdownThread(BenchStream bos) {
7         this.bos = bos;
8     }
9
10     public void run() {
11         this.bos.displayTotal();
12     }
13 }
14
Popular Tags