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

commonMain.hiveline.stream.StopStreamRequest.kt Maven / Gradle / Ivy

Go to download

KMP package which exports compiled protobuf entities to be used by other repos

There is a newer version: 2.89.0
Show newest version
// Code generated by Wire protocol buffer compiler, do not edit.
// Source: hiveline.stream.StopStreamRequest in hiveline/stream.proto
package hiveline.stream

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`.immutableCopyOf
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.Unit
import kotlin.collections.List
import okio.ByteString

/**
 * message SelectedPeersDiffEntry {
 *   string peer_id = 1;
 *   int32 priority = 2;
 * }
 */
public class StopStreamRequest(
  streams: List = emptyList(),
  unknownFields: ByteString = ByteString.EMPTY,
) : Message(ADAPTER, unknownFields) {
  @field:WireField(
    tag = 1,
    adapter = "com.squareup.wire.ProtoAdapter#UINT32",
    label = WireField.Label.PACKED,
  )
  public val streams: List = immutableCopyOf("streams", streams)

  @Deprecated(
    message = "Shouldn't be used in Kotlin",
    level = DeprecationLevel.HIDDEN,
  )
  public 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")

  public override fun equals(other: Any?): Boolean {
    if (other === this) return true
    if (other !is StopStreamRequest) return false
    if (unknownFields != other.unknownFields) return false
    if (streams != other.streams) return false
    return true
  }

  public override fun hashCode(): Int {
    var result = super.hashCode
    if (result == 0) {
      result = unknownFields.hashCode()
      result = result * 37 + streams.hashCode()
      super.hashCode = result
    }
    return result
  }

  public override fun toString(): String {
    val result = mutableListOf()
    if (streams.isNotEmpty()) result += """streams=$streams"""
    return result.joinToString(prefix = "StopStreamRequest{", separator = ", ", postfix = "}")
  }

  public fun copy(streams: List = this.streams, unknownFields: ByteString =
      this.unknownFields): StopStreamRequest = StopStreamRequest(streams, unknownFields)

  public companion object {
    public val ADAPTER: ProtoAdapter = object : ProtoAdapter(
      FieldEncoding.LENGTH_DELIMITED, 
      StopStreamRequest::class, 
      "type.googleapis.com/hiveline.stream.StopStreamRequest", 
      PROTO_3, 
      null, 
      "hiveline/stream.proto"
    ) {
      public override fun encodedSize(`value`: StopStreamRequest): Int {
        var size = value.unknownFields.size
        size += ProtoAdapter.UINT32.asPacked().encodedSizeWithTag(1, value.streams)
        return size
      }

      public override fun encode(writer: ProtoWriter, `value`: StopStreamRequest): Unit {
        ProtoAdapter.UINT32.asPacked().encodeWithTag(writer, 1, value.streams)
        writer.writeBytes(value.unknownFields)
      }

      public override fun encode(writer: ReverseProtoWriter, `value`: StopStreamRequest): Unit {
        writer.writeBytes(value.unknownFields)
        ProtoAdapter.UINT32.asPacked().encodeWithTag(writer, 1, value.streams)
      }

      public override fun decode(reader: ProtoReader): StopStreamRequest {
        var streams: MutableList? = null
        val unknownFields = reader.forEachTag { tag ->
          when (tag) {
            1 -> {
              if (streams == null) {
                val minimumByteSize = 1
                val initialCapacity = (reader.nextFieldMinLengthInBytes() / minimumByteSize)
                  .coerceAtMost(Int.MAX_VALUE.toLong())
                  .toInt()
                streams = ArrayList(initialCapacity)
              }
              streams!!.add(ProtoAdapter.UINT32.decode(reader))
            }
            else -> reader.readUnknownField(tag)
          }
        }
        return StopStreamRequest(
          streams = streams ?: listOf(),
          unknownFields = unknownFields
        )
      }

      public override fun redact(`value`: StopStreamRequest): StopStreamRequest = value.copy(
        unknownFields = ByteString.EMPTY
      )
    }

    private const val serialVersionUID: Long = 0L
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy