| JobBuilderWrite Method |
Writes the result of the specified operation to the DFS.
Namespace:
Ookii.Jumbo.Jet.Jobs.Builder
Assembly:
Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax public FileOutput Write(
IJobBuilderOperation operation,
string path,
Type recordWriterType
)
Public Function Write (
operation As IJobBuilderOperation,
path As String,
recordWriterType As Type
) As FileOutput
public:
FileOutput^ Write(
IJobBuilderOperation^ operation,
String^ path,
Type^ recordWriterType
)
member Write :
operation : IJobBuilderOperation *
path : string *
recordWriterType : Type -> FileOutput
Parameters
- operation
- Type: Ookii.Jumbo.Jet.Jobs.BuilderIJobBuilderOperation
The operation. - path
- Type: SystemString
The path of a directory on the DFS. - recordWriterType
- Type: SystemType
Type of the record writer. This may be a generic type definition.
Return Value
Type:
FileOutputA
FileOutput instance representing the output.
Remarks
If recordWriterType is a generic type definition, it will be constructed using the output record type of the operation.
See Also