Click or drag to resize

RecordReuseMode Enumeration

The way the record reuse attribute is applied to tasks that are generated from a delegate function by the JobBuilder.

Namespace:  Ookii.Jumbo.Jet.Jobs.Builder
Assembly:  Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax
public enum RecordReuseMode
Members
  Member nameValueDescription
Default0 The record reuse attribute is copied from the delegate's target method.
DoNotAllow1 The record reuse attribute is never applied.
Allow2 The record reuse attribute is always applied, with PassThrough set to .
PassThrough3 The record reuse attribute is always applied, with PassThrough set to .
Remarks

This allows you to specify the record reuse mode when using an anonymous delegate or lambda as the target method.

See Also