ItemBuildMode EnumerationNetworkComms.Net Help
Describes where a distributed item should be stored during and after being assembled

Namespace: DistributedFileSystem
Assembly: DistributedFileSystem (in DistributedFileSystem.dll) Version: 3.0.0.0 (3.0.0.0)
Syntax

public enum ItemBuildMode
Members

  Member nameValueDescription
Memory_Single0 Build the item to a single continuous memory stream. Requires sufficient memory during build.
Memory_Blocks1 Build the item to an array of memory streams. More high performance as reduces locking during build. Requires sufficient memory during build.
Disk_Single2 Build the item to the local application directory as a single file stream.
Disk_Blocks3 Build the item to the local application directory as an array of file streams. More high performance as reduces locking.
See Also