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

com.nhl.link.move.runtime.LmRuntime Maven / Gradle / Ivy

There is a newer version: 3.0.M6
Show newest version
package com.nhl.link.move.runtime;

import com.nhl.link.move.runtime.task.ITaskService;

/**
 * The main object to access ETL framework services.
 */
public interface LmRuntime {

	/**
	 * @since 2.1
     */
	 T service(Class serviceType);

	default ITaskService getTaskService() {
		return service(ITaskService.class);
	}
	
	void shutdown();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy