Difference between revisions of "ITasks"

From Clean
Jump to navigationJump to search
m
Line 24: Line 24:
  
 
== Read more ==
 
== Read more ==
* [[Workflow_examples]]
+
* [[Workflow examples]]

Revision as of 10:59, 19 December 2008

At the ICFP 2007 conference we presented iTasks [1], a multi-user workflow system for the web. With this library one can assign tasks to users and control the order in which these tasks have to be performed. A user uses a browser to perform the tasks assigned to him or her. The iTask system is therefore also very suited for web programming and web form handling. The tasks are defined on a very high level declarative monadic style.

Have a look at the iTask pages [2].

The new release of the iTask library we are working on will support:

  • Ajax handling of iTasks
  • Client side evaluation of iTasks

With a simple annotation an iTask is evaluated on the client instead of on the server. To make this possible we run full blown Clean applications in the browser as Java applet, making use of the fast Sapl interpreter [3]. The system automatically switches between client side and server side evaluation when needed.

For the AFP Summerschool 2008 we made a special Clean release which includes the new compiler which can generate SAPL code for execution on the client.

You can download this release at: http://clean.cs.ru.nl/download/Clean22/windows/Clean2.2-iTasks-AFP2008.zip

Read more