|
KIE API 6.0.0.Beta2 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Session
The WorkingMemory
is a super-interface for all StatefulKnowledgeSession
s.
Although, users are encouraged to use StatefulKnowledgeSession
or KnowledgeRuntime
interface instead of WorkingMemory
interface, specially because of the dispose()
method
that is only available in the StatefulKnowledgeSession
interface.
KieSession
Method Summary | |
---|---|
Agenda |
getAgenda()
Returns a reference to this session's Agenda . |
SessionEntryPoint |
getEntryPoint(String name)
Returns the WorkingMemoryEntryPoint instance associated with the given name. |
Collection<? extends SessionEntryPoint> |
getEntryPoints()
Returns a collection of all available working memory entry points for this session. |
QueryResults |
getQueryResults(String query,
Object... arguments)
Retrieve the QueryResults of the specified query and arguments |
void |
halt()
Request the engine to stop firing rules. |
LiveQuery |
openLiveQuery(String query,
Object[] arguments,
ViewChangedEventListener listener)
|
Methods inherited from interface org.kie.api.runtime.rule.SessionEntryPoint |
---|
delete, getEntryPointId, getFactCount, getFactHandle, getFactHandles, getFactHandles, getObject, getObjects, getObjects, insert, retract, update |
Method Detail |
---|
void halt()
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.StatefulKnowledgeSession.fireAllRules()
or
org.kie.api.runtime.StatefulKnowledgeSession.fireUntilHalt()
again.
Agenda getAgenda()
Agenda
.
SessionEntryPoint getEntryPoint(String name)
name
-
Collection<? extends SessionEntryPoint> getEntryPoints()
QueryResults getQueryResults(String query, Object... arguments)
query
- The name of the query.arguments
- The arguments used for the query
LiveQuery openLiveQuery(String query, Object[] arguments, ViewChangedEventListener listener)
|
KIE API 6.0.0.Beta2 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |