public void unmarshal(ByteBuf inBuf)
 {
     this.salt     = inBuf.readInt();
     this.ts       = inBuf.readInt();
     this.messages = inBuf.readIntMap();
 }
 public ByteBuf marshal(ByteBuf outBuf)
 {
     return(outBuf.put(salt).put(ts).putIntMap(messages));
 }