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

com.github.nill14.parsers.dependency.IConsumer Maven / Gradle / Ivy

Go to download

Implementation of directed acyclic graph along with some graph algorithms and dependency management.

The newest version!
package com.github.nill14.parsers.dependency;

public interface IConsumer {

	/**
	 * Perform an arbitrary code with the module.
	 * Execution is guaranteed to be performed in topological order.
	 * @param module The module to process
	 * @throws Exception any processing exception
	 */
	void process(T module) throws Exception;
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy