由于 VanillaChronicle 将数据存储在按日期命名的不同目录中,我可以从特定日期开始重播数据吗?示例代码表示赞赏。谢谢!
问问题
112 次
1 回答
0
您可以从任何您希望的索引开始。如果你有一个每日周期,你可以像这样选择索引
long daysSince1970 = .... // days sicne 1/1/1970
long index = daysSince1970 << 40; // the default indecies per day
if (!tailer.index(index))
throw new RuntimeException("Could not find this day");
// use the tailer from this point.
于 2015-08-16T15:36:38.493 回答