KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > shark > corbaclient > workflowadmin > instantiation > ProcessInstantiatorInterface


1 package org.enhydra.shark.corbaclient.workflowadmin.instantiation;
2
3 import org.omg.WorkflowModel.WfProcess;
4 import org.omg.WorkflowModel.WfEventAudit;
5 import org.omg.WorkflowModel.InvalidPerformer;
6 import org.omg.WfBase.BaseException;
7
8 /**
9  * Created by IntelliJ IDEA.
10  * User: dwf
11  * Date: Jun 29, 2005
12  * Time: 5:17:41 PM
13  * To change this template use File | Settings | File Templates.
14  */

15 public interface ProcessInstantiatorInterface {
16     void addPerformer (WfProcess pr);
17
18     void receive_event (WfEventAudit event) throws BaseException, InvalidPerformer;
19
20     // Prevents memory leak if client forgets to disconnect
21
void releaseProcesses();
22 }
23
Popular Tags