Package org.drools.event.rule

Examples of org.drools.event.rule.ActivationCreatedEvent


    public AgendaEventListenerAdapter(AgendaEventListener delegate) {
        this.delegate = delegate;
    }

    public void matchCreated(final MatchCreatedEvent event) {
        delegate.activationCreated(new ActivationCreatedEvent() {
            public Activation getActivation() {
                return new ActivationAdapter(event.getMatch());
            }

            public KnowledgeRuntime getKnowledgeRuntime() {
View Full Code Here


    public AgendaEventListenerAdapter(AgendaEventListener delegate) {
        this.delegate = delegate;
    }

    public void matchCreated(final MatchCreatedEvent event) {
        delegate.activationCreated(new ActivationCreatedEvent() {
            public Activation getActivation() {
                return new ActivationAdapter(event.getMatch());
            }

            public KnowledgeRuntime getKnowledgeRuntime() {
View Full Code Here

TOP

Related Classes of org.drools.event.rule.ActivationCreatedEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.