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

com.tvd12.ezymq.activemq.endpoint.EzyActiveMessage Maven / Gradle / Ivy

The newest version!
package com.tvd12.ezymq.activemq.endpoint;

import com.tvd12.ezymq.activemq.util.EzyActiveProperties;
import lombok.Getter;

@Getter
public class EzyActiveMessage {

    protected final byte[] body;
    protected final EzyActiveProperties properties;

    public EzyActiveMessage(EzyActiveProperties properties, byte[] body) {
        this.body = body;
        this.properties = properties;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy