.port_messaging.1.4.3.source-code.Message.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of port_messaging Show documentation
Show all versions of port_messaging Show documentation
The atoms of your platform
package com.hexagonkt.messaging
import java.lang.System.currentTimeMillis
import java.lang.Thread.currentThread
import java.time.LocalDateTime
import com.hexagonkt.helpers.toNumber
import com.hexagonkt.helpers.Jvm
open class Message (
val timestamp: Long = currentTimeMillis(),
val dateTime: Long = LocalDateTime.now().toNumber(),
val hostname: String = Jvm.hostname,
val ip: String = Jvm.ip,
val jvmId: String = Jvm.id,
val thread: String = currentThread().name
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy