Skip to content
Snippets Groups Projects
Commit a1a34847 authored by Florian Fittkau's avatar Florian Fittkau
Browse files

fixed hostname bug

parent 3a70f1f6
No related branches found
No related tags found
No related merge requests found
...@@ -26,8 +26,8 @@ import explorviz.live_trace_processing.record.misc.TimedPeriodRecord; ...@@ -26,8 +26,8 @@ import explorviz.live_trace_processing.record.misc.TimedPeriodRecord;
public class TCPReaderOneClient extends Thread implements IPeriodicTimeSignalReceiver { public class TCPReaderOneClient extends Thread implements IPeriodicTimeSignalReceiver {
private HostApplicationMetaDataRecord hostApplicationMetadata; private HostApplicationMetaDataRecord hostApplicationMetadata;
private final static Map<Integer, String> stringRegistry = new TreeMap<Integer, String>(); private final Map<Integer, String> stringRegistry = new TreeMap<Integer, String>();
private final static List<byte[]> waitingForStringMessages = new ArrayList<byte[]>(1024); private final List<byte[]> waitingForStringMessages = new ArrayList<byte[]>(1024);
private static final CountingThroughputFilter counter = new CountingThroughputFilter( private static final CountingThroughputFilter counter = new CountingThroughputFilter(
"Received records/sec in Reader" + Thread.currentThread().getId()); "Received records/sec in Reader" + Thread.currentThread().getId());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment