xyz.block.ftl.v1.PingResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ftl-runtime Show documentation
Show all versions of ftl-runtime Show documentation
Towards a 𝝺-calculus for large-scale systems
// Code generated by Wire protocol buffer compiler, do not edit.
// Source: xyz.block.ftl.v1.PingResponse in xyz/block/ftl/v1/ftl.proto
@file:Suppress("DEPRECATION")
package xyz.block.ftl.v1
import com.squareup.wire.FieldEncoding
import com.squareup.wire.Message
import com.squareup.wire.ProtoAdapter
import com.squareup.wire.ProtoReader
import com.squareup.wire.ProtoWriter
import com.squareup.wire.ReverseProtoWriter
import com.squareup.wire.Syntax.PROTO_3
import com.squareup.wire.WireField
import com.squareup.wire.`internal`.JvmField
import com.squareup.wire.`internal`.sanitize
import kotlin.Any
import kotlin.AssertionError
import kotlin.Boolean
import kotlin.Deprecated
import kotlin.DeprecationLevel
import kotlin.Int
import kotlin.Long
import kotlin.Nothing
import kotlin.String
import kotlin.Suppress
import okio.ByteString
public class PingResponse(
/**
* If present, the service is not ready to accept requests and this is the
* reason.
*/
@field:WireField(
tag = 1,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
jsonName = "notReady",
schemaIndex = 0,
)
public val not_ready: String? = null,
unknownFields: ByteString = ByteString.EMPTY,
) : Message(ADAPTER, unknownFields) {
@Deprecated(
message = "Shouldn't be used in Kotlin",
level = DeprecationLevel.HIDDEN,
)
override fun newBuilder(): Nothing = throw
AssertionError("Builders are deprecated and only available in a javaInterop build; see https://square.github.io/wire/wire_compiler/#kotlin")
override fun equals(other: Any?): Boolean {
if (other === this) return true
if (other !is PingResponse) return false
if (unknownFields != other.unknownFields) return false
if (not_ready != other.not_ready) return false
return true
}
override fun hashCode(): Int {
var result = super.hashCode
if (result == 0) {
result = unknownFields.hashCode()
result = result * 37 + (not_ready?.hashCode() ?: 0)
super.hashCode = result
}
return result
}
override fun toString(): String {
val result = mutableListOf()
if (not_ready != null) result += """not_ready=${sanitize(not_ready)}"""
return result.joinToString(prefix = "PingResponse{", separator = ", ", postfix = "}")
}
public fun copy(not_ready: String? = this.not_ready, unknownFields: ByteString =
this.unknownFields): PingResponse = PingResponse(not_ready, unknownFields)
public companion object {
@JvmField
public val ADAPTER: ProtoAdapter = object : ProtoAdapter(
FieldEncoding.LENGTH_DELIMITED,
PingResponse::class,
"type.googleapis.com/xyz.block.ftl.v1.PingResponse",
PROTO_3,
null,
"xyz/block/ftl/v1/ftl.proto"
) {
override fun encodedSize(`value`: PingResponse): Int {
var size = value.unknownFields.size
size += ProtoAdapter.STRING.encodedSizeWithTag(1, value.not_ready)
return size
}
override fun encode(writer: ProtoWriter, `value`: PingResponse) {
ProtoAdapter.STRING.encodeWithTag(writer, 1, value.not_ready)
writer.writeBytes(value.unknownFields)
}
override fun encode(writer: ReverseProtoWriter, `value`: PingResponse) {
writer.writeBytes(value.unknownFields)
ProtoAdapter.STRING.encodeWithTag(writer, 1, value.not_ready)
}
override fun decode(reader: ProtoReader): PingResponse {
var not_ready: String? = null
val unknownFields = reader.forEachTag { tag ->
when (tag) {
1 -> not_ready = ProtoAdapter.STRING.decode(reader)
else -> reader.readUnknownField(tag)
}
}
return PingResponse(
not_ready = not_ready,
unknownFields = unknownFields
)
}
override fun redact(`value`: PingResponse): PingResponse = value.copy(
unknownFields = ByteString.EMPTY
)
}
private const val serialVersionUID: Long = 0L
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy