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 に答える