You are viewing a plain text version of this content. The canonical link for it is here.
Posted to agila-dev@incubator.apache.org by Christopher Lim <ch...@gmail.com> on 2005/07/04 02:25:45 UTC

Re: compile error

Hi Ralph,

I've submited a patch but it hasn't been added yet.

You can manually edit the specific culprit line rather than wait for
it to be committed. ;)

Index: DelayNode.java
===================================================================
--- DelayNode.java	(revision 157624)
+++ DelayNode.java	(working copy)
@@ -39,7 +39,7 @@
         TimerService timerService = ctx.getTimerService();
 
         timerService.setExecutionContinue(
-                ctx.getNextExecutionToken().getTokenID(), 10);
+                ctx.getNextExecutionToken().getTokenID(), 10, "", "" );
 
         System.out.println("Delay node sleeping for 10 seconds");



--
Chris








On 6/30/05, Ralph Goers <Ra...@dslextreme.com> wrote:
> I am trying to build bpm. I checked out from trunk.  When I run maven I
> get the attached error. Viewing the source in IntelliJ shows the same thing.
> 
>  __  __
> |  \/  |__ _Apache__ ___
> | |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
> |_|  |_\__,_|\_/\___|_||_|  v. 1.0.2
> 
> build:start:
> 
> java:prepare-filesystem:
> 
> java:compile:
>     [echo] Compiling to c:\projects\agila\trunk\modules\bpm/target/classes
>     [javac] Compiling 14 source files to
> C:\projects\agila\trunk\modules\bpm\target\classes
> C:\Projects\agila\trunk\modules\bpm\src\java\org\apache\agila\model\node\DelayNode.java:41:
> setExecutionContinue(org.apache.agila.engine.TokenID,int,java.lang.String,java.io.Serializable)
> in org.apache.agila.services.TimerService cannot be applied to
> (org.apache.agila.engine.TokenID,int)
>         timerService.setExecutionContinue(
>                     ^
> 1 error
> 
> BUILD FAILED
> File...... c:\projects\agila\.maven\cache\maven-java-plugin-1.5\plugin.jelly
> Element... ant:javac
> Line...... 63
> Column.... 48
> Compile failed; see the compiler error output for details.
> Total time: 4 seconds
> Finished at: Wed Jun 29 22:08:23 PDT 2005
> 
> 
>