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

org.drools.examples.conway.ConwayRuleDelegate Maven / Gradle / Ivy

The newest version!
package org.drools.examples.conway;

import org.drools.runtime.StatefulKnowledgeSession;

public interface ConwayRuleDelegate {

    public abstract StatefulKnowledgeSession getSession();

    public abstract void init();

    /* (non-Javadoc)
     * @see org.drools.examples.conway.CellGrid#nextGeneration()
     */
    public abstract boolean nextGeneration();

    /* (non-Javadoc)
     * @see org.drools.examples.conway.CellGrid#killAll()
     */
    public abstract void killAll();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy