org.yamcs.artemis.ArtemisPpService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yamcs-artemis Show documentation
Show all versions of yamcs-artemis Show documentation
Yamcs Artemis senders/receivers
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