Comment puis-je obtenir l'horodatage UTC Scala en secondes depuis le 1er janvier 1970?
De la même manière que vous le feriez en Java:
val timestamp: Long = System.currentTimeMillis / 1000
À partir de Java 8, il est possible de le faire comme ceci:
import Java.time.Instant
unixTimestamp : Long = Instant.now.getEpochSecond
Via la réponse de micha ici: https://stackoverflow.com/a/24703573/577199