Add TODO note

Change-Id: If600ac0f81bc25f9d1d2a6a3cbd9ffdbe19183cf
This commit is contained in:
Yuta HIGUCHI 2014-10-07 10:05:59 -07:00
parent f1d425affe
commit c65f51273a

View File

@ -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() {}