Interface ProcessMarshaller
-
public interface ProcessMarshaller
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinit(org.drools.core.marshalling.MarshallerReaderContext context)List<org.kie.api.runtime.process.ProcessInstance>readProcessInstances(org.drools.core.marshalling.MarshallerReaderContext context)voidreadProcessTimers(org.drools.core.marshalling.MarshallerReaderContext context)org.drools.core.process.WorkItemreadWorkItem(org.drools.core.marshalling.MarshallerReaderContext context)voidreadWorkItems(org.drools.core.marshalling.MarshallerReaderContext context)voidwriteProcessInstances(org.drools.core.marshalling.MarshallerWriteContext context)voidwriteProcessTimers(org.drools.core.marshalling.MarshallerWriteContext context)voidwriteWorkItem(org.drools.core.marshalling.MarshallerWriteContext context, org.drools.core.process.WorkItem workItem)voidwriteWorkItems(org.drools.core.marshalling.MarshallerWriteContext context)
-
-
-
Method Detail
-
writeProcessInstances
void writeProcessInstances(org.drools.core.marshalling.MarshallerWriteContext context) throws IOException- Throws:
IOException
-
writeProcessTimers
void writeProcessTimers(org.drools.core.marshalling.MarshallerWriteContext context) throws IOException- Throws:
IOException
-
writeWorkItems
void writeWorkItems(org.drools.core.marshalling.MarshallerWriteContext context) throws IOException- Throws:
IOException
-
readProcessInstances
List<org.kie.api.runtime.process.ProcessInstance> readProcessInstances(org.drools.core.marshalling.MarshallerReaderContext context) throws IOException
- Throws:
IOException
-
readProcessTimers
void readProcessTimers(org.drools.core.marshalling.MarshallerReaderContext context) throws IOException, ClassNotFoundException- Throws:
IOExceptionClassNotFoundException
-
readWorkItems
void readWorkItems(org.drools.core.marshalling.MarshallerReaderContext context) throws IOException- Throws:
IOException
-
init
void init(org.drools.core.marshalling.MarshallerReaderContext context)
-
writeWorkItem
void writeWorkItem(org.drools.core.marshalling.MarshallerWriteContext context, org.drools.core.process.WorkItem workItem)
-
readWorkItem
org.drools.core.process.WorkItem readWorkItem(org.drools.core.marshalling.MarshallerReaderContext context)
-
-