(long tid)
| 135 | } |
| 136 | |
| 137 | public void setTid(long tid) throws RocksDBException { |
| 138 | var bb = ByteBuffer.Allocate(9); |
| 139 | bb.WriteLong(tid); |
| 140 | meta.put(writeOptions, metaTid, 0, metaTid.length, bb.Bytes, 0, bb.WriteIndex); |
| 141 | this.tid = tid; |
| 142 | } |
| 143 | |
| 144 | public long getTid() { |
| 145 | return tid; |