Click or drag to resize

JumboFile Constructor

Initializes a new instance of the JumboFile class.

Namespace:  Ookii.Jumbo.Dfs.FileSystem
Assembly:  Ookii.Jumbo.Dfs (in Ookii.Jumbo.Dfs.dll) Version: 2.0.0
Syntax
public JumboFile(
	string fullPath,
	string name,
	DateTime dateCreated,
	long size,
	long blockSize,
	int replicationFactor,
	RecordStreamOptions recordOptions,
	bool isOpenForWriting,
	IEnumerable<Guid> blocks
)

Parameters

fullPath
Type: SystemString
The full path of the file.
name
Type: SystemString
The name of the file.
dateCreated
Type: SystemDateTime
The date and time the file was created.
size
Type: SystemInt64
The size of the file.
blockSize
Type: SystemInt64
The block size of the file.
replicationFactor
Type: SystemInt32
The number of replicas.
recordOptions
Type: Ookii.Jumbo.IORecordStreamOptions
The record options.
isOpenForWriting
Type: SystemBoolean
if set to the file is open for writing.
blocks
Type: System.Collections.GenericIEnumerableGuid
The blocks that make up this file. May be .
See Also