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

org.yamcs.artemis.TupleTranslator Maven / Gradle / Ivy

There is a newer version: 4.10.9
Show newest version
package org.yamcs.artemis;

import org.apache.activemq.artemis.api.core.client.ClientMessage;
import org.yamcs.yarch.Tuple;
import org.yamcs.yarch.TupleDefinition;


/**
 * Translates between tuples and ActiveMQ messages.
 * 
 **/

public interface TupleTranslator {
    /**
     * @return the original msg
     */
    ClientMessage buildMessage(ClientMessage msg, Tuple tuple);
    /**
     * 
     * @param message
     * @return
     */
    Tuple buildTuple(ClientMessage message);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy