[JBoss JIRA] Closed: (JBPM-392) cancel taskInstances, messages and timers when process instance ends
by Tom Baeyens (JIRA)
[ http://jira.jboss.com/jira/browse/JBPM-392?page=all ]
Tom Baeyens closed JBPM-392.
----------------------------
Fix Version/s: (was: jBPM jPDL 3.2.1)
Resolution: Won't Fix
this issue won't be fixed as a jbpm API.
the problem is that the logs refer to the task instance data, even when the process is ended. so the historic information would have to be removed in order for the task data to be removed. in the next generation version of jbpm, we'll be starting with a real business intelligence solution that duplicates all the information in the historic archive.
instead, users will have the following workaround: they can do for now: use hibernate bulk delete to remove the logs that have references to the task instances (similar for any other type of runtime data). then, use the bulk delete to remove the task instances themselves.
> cancel taskInstances, messages and timers when process instance ends
> --------------------------------------------------------------------
>
> Key: JBPM-392
> URL: http://jira.jboss.com/jira/browse/JBPM-392
> Project: JBoss jBPM
> Issue Type: Feature Request
> Components: Core Engine
> Reporter: Tom Baeyens
> Assigned To: Tom Baeyens
>
> when a process instance ends, we should have an option to remove or cancel all open taskInstance, messages and timers.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 3 months
[JBoss JIRA] Resolved: (JBRULES-208) Improved DSL Organization
by Michael Neale (JIRA)
[ http://jira.jboss.com/jira/browse/JBRULES-208?page=all ]
Michael Neale resolved JBRULES-208.
-----------------------------------
Resolution: Out of Date
This has been partially incorporated, and partially superseeded by the new package configuration concepts (in the BRMS etc) - where the package config is kept outside of the DRL or DSL file (the DSL file is just a specific asset that contributes to the configuration).
> Improved DSL Organization
> -------------------------
>
> Key: JBRULES-208
> URL: http://jira.jboss.com/jira/browse/JBRULES-208
> Project: JBoss Rules
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: Drl Parser/Builder
> Affects Versions: 3.0-beta1
> Reporter: Jeff Brown
> Assigned To: Michael Neale
> Fix For: 3.1-m3
>
> Attachments: DSL-contribs-mahen.zip
>
>
> When using DSL, right now import statements are added to the DRL file. The statements that those import statements affect are in the DSL file. It may make more sense to get the import statements into the file that explicitely uses the classes being imported. As it is right now, if the DSL implementation changes in a way that doesn't change the DSL syntax, the DRL file may still have to be updated just to include new imports. That is an implementation detail that should be transparent to the DRL author.
> To take that a bit further, it may make sense to move the function definitions so the DRL file includes just the expander and the rules. This separation would be cleaner and would probably make more sense from the perspective of the DRL author.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 3 months
[JBoss JIRA] Created: (JBRULES-375) "?" doesn't seem to be recognized in the excel spreadsheet.
by wen Lin (JIRA)
"?" doesn't seem to be recognized in the excel spreadsheet.
-------------------------------------------------------------
Key: JBRULES-375
URL: http://jira.jboss.com/jira/browse/JBRULES-375
Project: JBoss Rules
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Decision tables
Affects Versions: 3.0.1
Environment: window xp, eclipses-3.1.2
Reporter: wen Lin
Assigned To: Mark Proctor
In the action cell, I have
int score = (i.getMyScore()< $param)? i.getMyScore(): $param; c.setAdjustScore(score); c.setFlag(false); modify( c );
and got the following errors:
[mTokens]: line 25:39 state 0 (decisionfiltered=16) no viable alt line 25:39; char='?'
[mTokens]: line 37:39 state 0 (decisionfiltered=16) no viable alt line 37:39; char='?'
[mTokens]: line 49:39 state 0 (decisionfiltered=16) no viable alt line 49:39; char='?'
[mTokens]: line 61:39 state 0 (decisionfiltered=16) no viable alt line 61:39; char='?'
[mTokens]: line 73:39 state 0 (decisionfiltered=16) no viable alt line 73:39; char='?'
[mTokens]: line 85:39 state 0 (decisionfiltered=16) no viable alt line 85:39; char='?'
[mTokens]: line 97:39 state 0 (decisionfiltered=16) no viable alt line 97:39; char='?'
Rule Compilation error Syntax error on token ")", ? expected after this token
Rule Compilation error Syntax error on token ")", ? expected after this token
Rule Compilation error Syntax error on token ")", ? expected after this token
Rule Compilation error Syntax error on token ")", ? expected after this token
Rule Compilation error Syntax error on token ")", ? expected after this token
Rule Compilation error Syntax error on token ")", ? expected after this token
Rule Compilation error Syntax error on token ")", ? expected after this token
------------------------------------------------------------------
but the problem disappears while I use the following instead:
c.setAdjustScore(Math.min(i.getMyScore (), $param));
---------------------------------------------------------------------------------------
It seems to me that either "?" is not recognized or "(a>b)? a:b" doesn't work ...
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 3 months