Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: ltollesonHi Cristi,
It can be done, but the functionality is not as straightforward as you are thinking. You will need to use the datetime type instead of just the time type field and then adjust the datetime with the milliseconds. See Example Below.
EXAMPLE
someDate = date()
someTime = time()
MS = 123
someDT = timestamp(someDate, someTime)
someDTMS = someDT.dateTimeAdjust(MS, "milliseconds")
emit someDate, someTime, someDT, someDTMS