blob: feb214e284b37f6b0125502ab0f8752924f602d1 [file] [log] [blame]
package reactortest;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
import org.reactivestreams.Publisher;
import org.reactivestreams.Subscriber;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import component.api.MComponent;
import reactor.core.publisher.Flux;
import reactor.math.MathFlux;
@Component(immediate=true)
public class MqttExample {
Logger LOG = LoggerFactory.getLogger(MqttExample.class);
@Reference(target="(name=mqtt)")
MComponent<byte[]> mqtt;
@Activate
public void start() throws Exception {
LOG.info("Starting mqtt test component");
Publisher<byte[]> fromTopic = mqtt.from("input");
Subscriber<byte[]> toTopic = mqtt.to("output");
Flux.from(fromTopic)
.map(ByteArrayConverter::asInteger)
.log()
.window(2, 1)
.flatMap(win -> MathFlux.averageDouble(win))
.map(DoubleConverter::asByteAr)
.subscribe(toTopic);
LOG.info("mqtt test component started");
}
}