[ISSUE #6960] Added Slot formatting sketch comments (#6961)

This commit is contained in:
mxsm
2023-07-05 11:03:52 +08:00
committed by GitHub
parent 00fc42b8be
commit 4f840afcb0
@@ -16,9 +16,17 @@
*/
package org.apache.rocketmq.store.timer;
/**
* Represents a slot of timing wheel. Format:
* ┌────────────┬───────────┬───────────┬───────────┬───────────┐
* │delayed time│ first pos │ last pos │ num │ magic │
* ├────────────┼───────────┼───────────┼───────────┼───────────┤
* │ 8bytes │ 8bytes │ 8bytes │ 4bytes │ 4bytes │
* └────────────┴───────────┴───────────┴───────────┴───────────┘
*/
public class Slot {
public static final short SIZE = 32;
public final long timeMs;
public final long timeMs; //delayed time
public final long firstPos;
public final long lastPos;
public final int num;