All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.wavebeans.execution.distributed.proto.LongProtoValue.kt Maven / Gradle / Ivy

package io.wavebeans.execution.distributed.proto

import kotlinx.serialization.Serializable
import kotlinx.serialization.protobuf.ProtoNumber

fun Long?.toProtoValue() = LongProtoValue(this == null, this ?: Long.MIN_VALUE)

@Serializable
data class LongProtoValue(
        @ProtoNumber(1)
        override val isNull: Boolean,
        @ProtoNumber(2)
        override val value: Long
) : ProtoValue





© 2015 - 2024 Weber Informatics LLC | Privacy Policy