com.github.nill14.parsers.dependency.IConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graph Show documentation
Show all versions of graph Show documentation
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