Table of Contents

Interface IKafkaTable

Namespace
MASES.EntityFrameworkCore.KNet.Storage.Internal
Assembly
MASES.EntityFrameworkCore.KNet.dll

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

public interface IKafkaTable : IEntityTypeProducer, IDisposable
Inherited Members

Properties

Cluster

The referring IKafkaCluster

IKafkaCluster Cluster { get; }

Property Value

IKafkaCluster

Rows

Current rows

IEnumerable<object?[]> Rows { get; }

Property Value

IEnumerable<object[]>

Methods

BumpValueGenerators(object?[])

Bumps values

void BumpValueGenerators(object?[] row)

Parameters

row object[]

Create(IUpdateEntry)

Creates a new row

IKafkaRowBag Create(IUpdateEntry entry)

Parameters

entry IUpdateEntry

Returns

IKafkaRowBag

Delete(IUpdateEntry)

Deletes a row

IKafkaRowBag Delete(IUpdateEntry entry)

Parameters

entry IUpdateEntry

Returns

IKafkaRowBag

GetIntegerValueGenerator<TProperty>(IProperty, IReadOnlyList<IKafkaTable>)

KafkaIntegerValueGenerator<TProperty> GetIntegerValueGenerator<TProperty>(IProperty property, IReadOnlyList<IKafkaTable> tables)

Parameters

property IProperty
tables IReadOnlyList<IKafkaTable>

Returns

KafkaIntegerValueGenerator<TProperty>

Type Parameters

TProperty

SnapshotRows()

Create snapshot

IReadOnlyList<object?[]> SnapshotRows()

Returns

IReadOnlyList<object[]>

Update(IUpdateEntry)

Updates a row

IKafkaRowBag Update(IUpdateEntry entry)

Parameters

entry IUpdateEntry

Returns

IKafkaRowBag