jvmMain.no.dossier.libraries.amqpconnector.primitives.AmqpRoutingAndBindingKeys.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of amqp-connector-jvm Show documentation
Show all versions of amqp-connector-jvm Show documentation
RabbitMQ Kotlin Client library
package no.dossier.libraries.amqpconnector.primitives
sealed class AmqpBindingKey {
object QueueName: AmqpBindingKey()
class Custom(val key: String): AmqpBindingKey()
}
sealed class AmqpRoutingKey {
object PublisherDefault: AmqpRoutingKey()
class Custom(val key: String): AmqpRoutingKey()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy