Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Yuta HIGUCHI
2014-10-07 10:05:59 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c65f51273aaf6c0d533ae23db5a8dcab3dd57c45
c65f5127
1 parent
f1d425af
Add TODO note
Change-Id: If600ac0f81bc25f9d1d2a6a3cbd9ffdbe19183cf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletions
utils/netty/src/main/java/org/onlab/netty/InternalMessage.java
utils/netty/src/main/java/org/onlab/netty/InternalMessage.java
View file @
c65f512
...
...
@@ -8,12 +8,16 @@ import java.io.IOException;
*/
public
final
class
InternalMessage
implements
Message
{
public
static
final
String
REPLY_MESSAGE_TYPE
=
"NETTY_MESSAGIG_REQUEST_REPLY"
;
private
long
id
;
private
Endpoint
sender
;
private
String
type
;
private
Object
payload
;
private
transient
NettyMessagingService
messagingService
;
public
static
final
String
REPLY_MESSAGE_TYPE
=
"NETTY_MESSAGIG_REQUEST_REPLY"
;
// TODO: add transient payload serializer or change payload type to
// byte[], ByteBuffer, etc.
// Must be created using the Builder.
private
InternalMessage
()
{}
...
...
Please
register
or
login
to post a comment