org.yamcs.artemis.ArtemisPpService Maven / Gradle / Ivy
package org.yamcs.artemis;
import java.util.List;
import org.yamcs.ConfigurationException;
/**
* takes Parameter data from yarch streams and publishes it to hornetq address (reverse of ActiveMQPpProvider)
*
* To avoid a ping-pong effect:
* - it creates a queue with a filter on hornet side
* - it remembers a thread local version of the tuple in transition on yarch side
*
*/
public class ArtemisPpService extends AbstractArtemisTranslatorService {
public ArtemisPpService(String instance, List streamNames) throws ConfigurationException {
super(instance, streamNames, new PpTupleTranslator());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy