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

org.reactivecommons.async.impl.communications.Message Maven / Gradle / Ivy

package org.reactivecommons.async.impl.communications;

import java.util.Map;

/**
 * Simple Internal Message representation
 * @author Daniel Bustamante Ospina
 */
public interface Message {

    byte[] getBody();
    Properties getProperties();

    interface Properties {
        String getContentType();
        String getContentEncoding();
        long getContentLength();
        Map getHeaders();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy