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

org.enodeframework.queue.SendMessageResult.kt Maven / Gradle / Ivy

package org.enodeframework.queue

import com.google.common.collect.Maps
import java.io.Serializable

/**
 * @author [email protected]
 */
class SendMessageResult(var id: String, result: Any) : Serializable {

    var items: MutableMap = Maps.newHashMap()

    init {
        this.items["result"] = result
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy