Method | Description | |
---|---|---|
Dispose ( ) : void |
see https://msdn.microsoft.com/fr-fr/library/ms244737.aspx
|
|
RegisterStream ( IItemStream stream ) : void |
Register a single IItemStream for callbacks to the stream interface.
|
|
SetStreams ( IItemStream streams ) : void |
Register each of the streams for callbacks at the appropriate time in the step. The IItemReader and IItemWriter are automatically registered, but it doesn't hurt to also register them here. Injected dependencies of the reader and writer are not automatically registered, so if you implement ItemWriter using delegation to another object which itself is a IItemStream, you need to register the delegate here.
|
|
TaskletStep ( ) : NLog |
Default constructor.
|
|
TaskletStep ( string name ) : NLog |
Custom constructor with name.
|
Method | Description | |
---|---|---|
Close ( Summer.Batch.Infrastructure.Item.ExecutionContext ctx ) : void |
Delegates to composite stream closes.
|
|
CreateSemaphore ( ) : |
Extension point mainly for test purposes so that the behaviour of the lock can be manipulated to simulate various pathologies.
|
|
DoExecute ( StepExecution stepExecution ) : void |
Actual taskletstep execution.
|
|
Open ( Summer.Batch.Infrastructure.Item.ExecutionContext ctx ) : void |
Delegates to composite stream open
|
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void |
see https://msdn.microsoft.com/fr-fr/library/ms244737.aspx
|
protected Close ( Summer.Batch.Infrastructure.Item.ExecutionContext ctx ) : void | ||
ctx | Summer.Batch.Infrastructure.Item.ExecutionContext | |
return | void |
protected CreateSemaphore ( ) : |
||
return |
protected DoExecute ( StepExecution stepExecution ) : void | ||
stepExecution | StepExecution | |
return | void |
protected Open ( Summer.Batch.Infrastructure.Item.ExecutionContext ctx ) : void | ||
ctx | Summer.Batch.Infrastructure.Item.ExecutionContext | |
return | void |
public RegisterStream ( IItemStream stream ) : void | ||
stream | IItemStream | |
return | void |
public SetStreams ( IItemStream streams ) : void | ||
streams | IItemStream | |
return | void |