 | JobBuilderWrite Method |
Writes the result of the specified operation to the DFS.
Namespace: Ookii.Jumbo.Jet.Jobs.BuilderAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic 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 IJobBuilderOperation
- The operation.
- path String
- The path of a directory on the DFS.
- recordWriterType Type
- Type of the record writer. This may be a generic type definition.
Return Value
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