Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/endpoint/OteUdpEndpointReceiverImpl.java')
-rw-r--r--plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/endpoint/OteUdpEndpointReceiverImpl.java42
1 files changed, 0 insertions, 42 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/endpoint/OteUdpEndpointReceiverImpl.java b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/endpoint/OteUdpEndpointReceiverImpl.java
deleted file mode 100644
index 69748576257..00000000000
--- a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/endpoint/OteUdpEndpointReceiverImpl.java
+++ /dev/null
@@ -1,42 +0,0 @@
-package org.eclipse.osee.ote.endpoint;
-
-import java.net.InetSocketAddress;
-
-public class OteUdpEndpointReceiverImpl {
-
- private OteEndpointReceiveRunnable oteEndpointReceiveRunnable;
- private Thread th;
-
- public OteUdpEndpointReceiverImpl(InetSocketAddress address){
- oteEndpointReceiveRunnable = new OteEndpointReceiveRunnable(address);
- }
-
- public void start(){
- th = new Thread(oteEndpointReceiveRunnable);
- th.setName("OTE UDP Endpoint Receiver");
- th.setDaemon(true);
- th.start();
- }
-
- public void stop(){
- oteEndpointReceiveRunnable.stop();
- th.interrupt();
- }
-
- public void setDebugOutput(boolean enable){
- oteEndpointReceiveRunnable.setDebugOutput(enable);
- }
-
- public InetSocketAddress getEndpoint(){
- return oteEndpointReceiveRunnable.getAddress();
- }
-
- public void addDataProcessor(EndpointDataProcessor processor) {
- oteEndpointReceiveRunnable.addDataProcessor(processor);
- }
-
- public void removeDataProcessor(EndpointDataProcessor processor) {
- oteEndpointReceiveRunnable.removeDataProcessor(processor);
- }
-
-}

Back to the top