home *** CD-ROM | disk | FTP | other *** search
- package com.xibaro.chat;
-
- public class Submiter extends Thread {
- private Conexion jefe;
-
- public Submiter(Conexion jefe) {
- this.jefe = jefe;
- }
-
- public void run() {
- for(String datos = this.jefe.buffer((String)null); datos != null; datos = this.jefe.buffer((String)null)) {
- this.jefe.incSec();
-
- while(this.jefe.getSec() != this.jefe.getAk()) {
- this.jefe.manda(datos);
-
- try {
- Thread.sleep(1000L);
- } catch (InterruptedException var3) {
- }
- }
- }
-
- }
- }
-