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: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntax
public JumboFile(
	string fullPath,
	string name,
	DateTime dateCreated,
	long size,
	long blockSize,
	int replicationFactor,
	RecordStreamOptions recordOptions,
	bool isOpenForWriting,
	IEnumerable<Guid>? blocks
)

Parameters

fullPath  String
The full path of the file.
name  String
The name of the file.
dateCreated  DateTime
The date and time the file was created.
size  Int64
The size of the file.
blockSize  Int64
The block size of the file.
replicationFactor  Int32
The number of replicas.
recordOptions  RecordStreamOptions
The record options.
isOpenForWriting  Boolean
if set to the file is open for writing.
blocks  IEnumerableGuid
The blocks that make up this file. May be .
See Also