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: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
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