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

com.github.lemfi.kest.rabbitmq.model.RabbitMQMessage.kt Maven / Gradle / Ivy

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