Mercurial > hg > Database > Alice
view src/alice/daemon/CommandMessage.java @ 240:d9c9076d6b47
no use SEDA in IncomingTcpConnection
author | sugi |
---|---|
date | Tue, 09 Apr 2013 11:26:17 +0900 (2013-04-09) |
parents | 0f773308a863 |
children | 88be2824a989 |
line wrap: on
line source
package alice.daemon; import org.msgpack.annotation.Message; import org.msgpack.type.Value; @Message public class CommandMessage { public int type; public int index; public int seq; public String key; public Value val; public CommandMessage() {} public CommandMessage(int type, int index, int seq, String key, Value val) { this.type = type; this.index = index; this.seq = seq; this.key = key; this.val = val; } }