Interface IRawUploadQueue<T>
Interface to CDF Raw upload queues. The items in the queue are
DTOs (data type objects) of type T
.
Inherited Members
Namespace: Cognite.Extractor.Utils
Assembly: ExtractorUtils.dll
Syntax
public interface IRawUploadQueue<T> : IUploadQueue<(string key, T columns)>, IUploadQueue, IDisposable, IAsyncDisposable
Type Parameters
Name | Description |
---|---|
T |
Methods
| Edit this page View SourceEnqueueRow(string, T)
Enqueue the DTO of type T
to be uploaded
as a row to CDF Raw.
Declaration
void EnqueueRow(string key, T columns)
Parameters
Type | Name | Description |
---|---|---|
string | key | The row key |
T | columns | The row columns |