ServiceEndpoint

data class ServiceEndpoint constructor(val uri: String, val accept: Array<String>? = arrayOf(), val routingKeys: Array<String>? = arrayOf())(source)

Represents a service endpoint, which is a URI and other information that indicates how to access the service.

Constructors

Link copied to clipboard
constructor(uri: String, accept: Array<String>? = arrayOf(), routingKeys: Array<String>? = arrayOf())

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val uri: String

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean

Determines whether the current object is equal to another object.

Link copied to clipboard
open override fun hashCode(): Int

Calculates the hash code for the ServiceEndpoint object. The hash code is calculated based on the uri, accept, and routingKeys properties.