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

com.coreoz.plume.scheduler.PlumeTimeProvider Maven / Gradle / Ivy

There is a newer version: 4.2.3
Show newest version
package com.coreoz.plume.scheduler;

import com.coreoz.wisp.time.TimeProvider;

class PlumeTimeProvider implements TimeProvider {

	private final com.coreoz.plume.services.time.TimeProvider plumeTimeProvider;

	public PlumeTimeProvider(com.coreoz.plume.services.time.TimeProvider plumeTimeProvider) {
		this.plumeTimeProvider = plumeTimeProvider;
	}

	@Override
	public long currentTime() {
		return plumeTimeProvider.currentTime();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy