1 package org.objectweb.proactive.ext.benchsocket;2 3 public class ShutdownThread extends Thread {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