Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
joram
joram
Commits
a6366999
Commit
a6366999
authored
Oct 19, 2010
by
afreyssin
Browse files
Adds an hint to differentiate the reader and writer threads.
parent
143bf19e
Changes
2
Hide whitespace changes
Inline
Side-by-side
joram/joram/mom/core/src/main/java/org/objectweb/joram/mom/proxies/tcp/TcpReader.java
View file @
a6366999
...
...
@@ -62,7 +62,7 @@ public class TcpReader extends Daemon {
AgentId
proxyId
,
TcpConnection
tcpConnection
,
boolean
closeConnection
)
{
super
(
"tcpReader
"
);
super
(
"tcpReader
."
+
tcpConnection
.
getKey
()
);
this
.
ioctrl
=
ioctrl
;
this
.
proxyId
=
proxyId
;
this
.
tcpConnection
=
tcpConnection
;
...
...
joram/joram/mom/core/src/main/java/org/objectweb/joram/mom/proxies/tcp/TcpWriter.java
View file @
a6366999
...
...
@@ -56,7 +56,7 @@ public class TcpWriter extends Daemon {
public
TcpWriter
(
IOControl
ioctrl
,
AckedQueue
replyQueue
,
TcpConnection
tcpConnection
)
{
super
(
"tcpWriter
"
);
super
(
"tcpWriter
."
+
tcpConnection
.
getKey
()
);
this
.
ioctrl
=
ioctrl
;
this
.
replyQueue
=
replyQueue
;
this
.
tcpConnection
=
tcpConnection
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment