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

jvmMain.no.dossier.libraries.amqpconnector.primitives.AmqpRoutingAndBindingKeys.kt Maven / Gradle / Ivy

There is a newer version: 0.2.8
Show newest version
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