John

I think the line
     guard on when requests~items > 0 | stop = .true
is not good.
Normally, you can guard only on attributes exposed by the current method. I
made the same mistake recently.

I made those changes in your script :

change the guard :
     guard on when /*requests~*/items > 0 | stop = .true

add the attribute items

and then either do
items +=1
or
items -=1
depending on the action done on requests.

Now, I see:
method1 result
method2 result
method1 result
method2 result

Jean-Louis
------------------------------------------------------------------------------
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d
_______________________________________________
Oorexx-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

Reply via email to