What happens when 3rd Party Siebel Communications Driver calls IndicateNewWorkItem() with same old a
Hi,
Please consider this scenario:
- Driver indicated new work item with tracking id 12345 using IndicateNewWorkItem(...)
- Driver started work item using WorkItemStarted and tracking id 12345
- Driver updated work item using UpdateObjectInformation(...)
- Driver started another work item with tracking id 12345 and old tracking id 12345 via WorkItemStarted(...) method
- Driver released work item using WorkItemReleased(...) with tracking id 12345
My question is what happened to previous work item after step # 4. Will the first work item duration be from step 1 to step 4 or from step 1 to step 5?
What happens under the hood when driver starts another work item with same tracking id and old tracking id. Is old work item with this tracking id released before starting new one or what?