com.github.lemfi.kest.rabbitmq.model.RabbitMQMessage.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of step-rabbitmq Show documentation
Show all versions of step-rabbitmq Show documentation
Backends testing with Kotlin
package com.github.lemfi.kest.rabbitmq.model
import java.util.Date
data class RabbitMQMessage(
val message: T,
val headers: Map,
val exchange: String,
val routingKey: String,
val deliveryTag: Long,
val redelivered: Boolean,
val type: String?,
val contentType: String?,
val contentEncoding: String?,
val messageId: String?,
val correlationId: String?,
val replyTo: String?,
val expiration: String?,
val timestamp: Date?,
val userId: String?,
val appId: String?,
val className: String?,
val clusterId: String?,
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy