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

org.yamcs.time.RealtimeTimeService Maven / Gradle / Ivy

There is a newer version: 5.10.7
Show newest version
package org.yamcs.time;

import org.yamcs.utils.TimeEncoding;

/**
 * Simple model from TimeService implementing the mission time as the wallclock time
 * 
 *
 */
public class RealtimeTimeService implements TimeService {
    @Override
    public long getMissionTime() {
        return TimeEncoding.getWallclockTime();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy