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

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

package io.wavebeans.execution.distributed.proto

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

fun Int?.toProtoValue() = IntProtoValue(this == null, this ?: Int.MIN_VALUE)

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy