Class ProcessorExecutionContext
- java.lang.Object
-
- org.webharvest.runtime.processors.ProcessorExecutionContext
-
public final class ProcessorExecutionContext extends Object
Context object that holds execution state and configuration. Encapsulates execution-related data and operations.- Since:
- 2.1.0-SNAPSHOT
- Author:
- Robert Bala
-
-
Constructor Summary
Constructors Constructor Description ProcessorExecutionContext(Processor<?> processor, DynamicScopeContext context, Map<String,Object> properties, long startTime, String processorId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DynamicScopeContext
getContext()
long
getExecutionTime()
Processor<?>
getProcessor()
String
getProcessorId()
Map<String,Object>
getProperties()
long
getStartTime()
-
-
-
Method Detail
-
getProcessor
public Processor<?> getProcessor()
-
getContext
public DynamicScopeContext getContext()
-
getStartTime
public long getStartTime()
-
getProcessorId
public String getProcessorId()
-
getExecutionTime
public long getExecutionTime()
-
-