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

org.yamcs.events.QuietEventProducer Maven / Gradle / Ivy

There is a newer version: 5.10.9
Show newest version
package org.yamcs.events;

import org.yamcs.yarch.protobuf.Db.Event;

/**
 * Event producer that swallows the events
 * @author nm
 *
 */
public class QuietEventProducer extends AbstractEventProducer {

    @Override
    public void sendEvent(Event event) {
        //do nothing
    }

    @Override
    public void close() {
        //do nothing
    }

    @Override
    public long getMissionTime() {
        return 0;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy