Table of Contents

Interface IDataSink<T>

Namespace
Datafication.Core.Sinks
Assembly
Datafication.Core.dll

Defines a contract for transforming a DataBlock into an instance of type T.

public interface IDataSink<T>

Type Parameters

T

The type of the result produced after transformation.

Methods

Transform(DataBlock)

Transforms the specified DataBlock into an instance of type T.

Task<T> Transform(DataBlock dataBlock)

Parameters

dataBlock DataBlock

The DataBlock to transform.

Returns

Task<T>

A System.Threading.Tasks.Task representing the asynchronous operation, with an instance of type T resulting from the transformation.