Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 1.2 KB

kafka-streams-KTableValueGetterSupplier.adoc

File metadata and controls

44 lines (34 loc) · 1.2 KB

KTableValueGetterSupplier

KTableValueGetterSupplier is the contract of KTableValueGetterSuppliers that can get a KTableValueGetter for storeNames.

package org.apache.kafka.streams.kstream.internals;

interface KTableValueGetterSupplier<K, V> {
  KTableValueGetter<K, V> get();
  String[] storeNames();
}
Table 1. KTableValueGetterSupplier Contract
Method Description

get

Used when…​FIXME

storeNames

Used when…​FIXME

Table 2. KTableValueGetterSuppliers
KTableValueGetterSupplier Description

KTableMaterializedValueGetterSupplier

KTableSourceValueGetterSupplier

KTableKTableAbstractJoinValueGetterSupplier