Browse Source

bzw jetzt ist auch der Transmitter kein Subscriber mehr, warum war

der das eh überhaupt?
toniV2
ahren 1 year ago
parent
commit
4ec7e6bc4c
1 changed files with 2 additions and 23 deletions
  1. 2
    23
      src/ChatProgramm/model/Transmitter.java

+ 2
- 23
src/ChatProgramm/model/Transmitter.java View File

* *
* @author ahren * @author ahren
*/ */
public abstract class Transmitter implements Runnable, Subscriber<Figur> {
public abstract class Transmitter implements Runnable {


static final int timeout = 60000; static final int timeout = 60000;
private static final int PORT = 35000; private static final int PORT = 35000;
} }
} }



@Override
public void onSubscribe(Flow.Subscription subscription) {
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
}

@Override
public void onNext(Figur item) {
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
}

@Override
public void onError(Throwable throwable) {
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
}

@Override
public void onComplete() {
throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
}

private void startempfangen()
private void startempfangen()
{ {
synchronized (this){ synchronized (this){
} }

Loading…
Cancel
Save