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

der das eh überhaupt?
This commit is contained in:
ahren 2023-12-20 16:04:24 +01:00
parent e8f0fd53d6
commit 4ec7e6bc4c

View File

@ -24,7 +24,7 @@ import java.util.logging.Logger;
* *
* @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;
@ -132,27 +132,6 @@ public abstract class Transmitter implements Runnable, Subscriber<Figur> {
} }
} }
@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){