  | ChannelConfigurationDisableDynamicPartitionAssignment Property | 
            Gets or sets a value indicating whether to disable dynamic partition assignment.
            
Namespace: Ookii.Jumbo.Jet.ChannelsAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic bool DisableDynamicPartitionAssignment { get; set; }Public Property DisableDynamicPartitionAssignment As Boolean
	Get
	Set
public:
property bool DisableDynamicPartitionAssignment {
	bool get ();
	void set (bool value);
}member DisableDynamicPartitionAssignment : bool with get, set
Property Value
Boolean if dynamic partition assignment; otherwise, 
.
            
Remarks
              If PartitionsPerTask is larger than 1, tasks can dynamically receive additional partitions
              besides those that were initially assigned to them.
            
              If this property is set to , dynamic partition assignment is disabled for
              the receiving stage of this channel, and every task will only ever process the partitions it was
              initially assigned.
            
See Also