Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
analysis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ExplorViz
explorviz-github-archive
analysis
Commits
a1a34847
Commit
a1a34847
authored
11 years ago
by
Florian Fittkau
Browse files
Options
Downloads
Patches
Plain Diff
fixed hostname bug
parent
3a70f1f6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/explorviz/live_trace_processing/reader/TCPReaderOneClient.java
+2
-2
2 additions, 2 deletions
...rviz/live_trace_processing/reader/TCPReaderOneClient.java
with
2 additions
and
2 deletions
src/explorviz/live_trace_processing/reader/TCPReaderOneClient.java
+
2
−
2
View file @
a1a34847
...
@@ -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
());
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment