what would be the tick’s equivalent of System.currentTimeMillis?
System.currentTimeMillis
I don't believe there is a direct alternative. however the cookbook does recommend using Clocks instead of currentTimeMillis
(inst-ms (tick/now)) seems to do the trick
(inst-ms (tick/now))
👍