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
TThe 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
Returns
- Task<T>
A System.Threading.Tasks.Task representing the asynchronous operation, with an instance of type
Tresulting from the transformation.