writer.writeUTF("n", name);
writer.writeLong("t", threadId);
writer.writeLong("ttl", ttl);
writer.writeBoolean("a", async);
final ObjectDataOutput out = writer.getRawDataOutput();
out.writeData(key);
out.writeData(value);
}
public void read(PortableReader reader) throws IOException {
name = reader.readUTF("n");