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

org.kie.api.runtime.rule.RuleRuntime Maven / Gradle / Ivy

Go to download

The Kogito public API which is backwards compatible between releases.

There is a newer version: 10.0.0
Show newest version
/*
 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.kie.api.runtime.rule;

import java.util.Collection;

/**
 * The {@link RuleRuntime} is a super-interface for all {@link org.kie.api.runtime.KieSession}s.
 * Although, users are encouraged to use {@link org.kie.api.runtime.KieSession} or {@link org.kie.api.runtime.KieRuntime}
 * interface instead of {@link RuleRuntime} interface, specially because of the dispose() method
 * that is only available in the {@link org.kie.api.runtime.KieSession} interface.
 *
 * @see org.kie.api.runtime.KieSession
 */
public interface RuleRuntime
    extends
    EntryPoint {

    /**
     * 

Request the engine to stop firing rules. If the engine is currently firing a rule, it will * finish executing this rule's consequence before stopping.

*

This method will not remove active Matches from the Agenda. * In case the application later wants to continue firing rules from the point where it stopped, * it should just call org.kie.api.runtime.KieSession#fireAllRules() or * org.kie.api.runtime.KieSession#fireUntilHalt() again.

*/ void halt(); /** * @return a reference to this session's Agenda. */ Agenda getAgenda(); /** * @return the WorkingMemoryEntryPoint instance associated with the given name. */ EntryPoint getEntryPoint(String name); /** * Returns a collection of all available working memory entry points * for this session. * * @return the collection of all available entry points for this session */ Collection< ? extends EntryPoint> getEntryPoints(); /** * Retrieve the QueryResults of the specified query and arguments * * @param query * The name of the query. * * @param arguments * The arguments used for the query * * @return The QueryResults of the specified query. * If no results match the query it is empty. * * @throws RuntimeException If the query does not exist */ QueryResults getQueryResults(String query, Object... arguments); LiveQuery openLiveQuery(String query, Object[] arguments, ViewChangedEventListener listener); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy