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

com.jpattern.core.chain.IChainResult Maven / Gradle / Ivy

There is a newer version: 3.6.2
Show newest version
package com.jpattern.core.chain;

import java.io.Serializable;

/**
 * 
 * @author Francesco Cina'
 *
 * 29/gen/2011
 * 
 * Represent the result of a "Chain of Responsibility" execution
 */
public interface IChainResult extends Serializable {

	/**
	 * Whether an or more elements of the chain are been executed  
	 * @return true if one the element did the job;
	 *         false means that there isn't an element which can be activated at the current condition   
	 */
	boolean isExecuted();
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy