[Bpmscript-users] Expiration of tasks
Status: Beta
Brought to you by:
dkfn
From: Artti <ar...@am...> - 2006-08-18 09:40:23
|
Hi, It would be very nice if there was an option to add expiration timer to human tasks: var taskRequest = taskService.taskRequest("How do you feel about BpmScript?"); taskRequest.response("rocks", "Rocks!"); taskRequest.setRole("ANONYMOUS"); var expirationDate = new Date(); expirationDate.setFullYear(2006,9,14); var future = taskService.request(taskRequest, expirationDate); // do some other stuff... var result = future.get(); -- View this message in context: http://www.nabble.com/Expiration-of-tasks-tf2126300.html#a5866714 Sent from the BpmScript - Users forum at Nabble.com. |