Table of Contents

Class StreamsBuilder

Namespace
Org.Apache.Kafka.Streams
Assembly
MASES.KNet.dll
public class StreamsBuilder : JVMBridgeBase<StreamsBuilder>, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition
Inheritance
StreamsBuilder
Implements
Inherited Members

Constructors

StreamsBuilder()

Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge

public StreamsBuilder()

StreamsBuilder(TopologyConfig)

public StreamsBuilder(TopologyConfig arg0)

Parameters

arg0 TopologyConfig

TopologyConfig

StreamsBuilder(params object[])

Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class

public StreamsBuilder(params object[] args)

Parameters

args object[]

Properties

BridgeClassName

Java class name to be instantiated

public override string BridgeClassName { get; }

Property Value

string

IsBridgeAbstract

true if the BridgeClassName is an abstract class, i.e. cannot be created an instance

public override bool IsBridgeAbstract { get; }

Property Value

bool

IsBridgeCloseable

true if the BridgeClassName implements Closeable

public override bool IsBridgeCloseable { get; }

Property Value

bool

IsBridgeInterface

true if the BridgeClassName is an interface, i.e. does not have any public constructor

public override bool IsBridgeInterface { get; }

Property Value

bool

IsBridgeStatic

true if the BridgeClassName is a static class, i.e. does not have any public constructor

public override bool IsBridgeStatic { get; }

Property Value

bool

Methods

AddGlobalStore<KIn, VIn>(StoreBuilder, String, Consumed<KIn, VIn>, ProcessorSupplier<KIn, VIn, Void, Void>)

public StreamsBuilder AddGlobalStore<KIn, VIn>(StoreBuilder arg0, String arg1, Consumed<KIn, VIn> arg2, ProcessorSupplier<KIn, VIn, Void, Void> arg3)

Parameters

arg0 StoreBuilder

StoreBuilder

arg1 String

String

arg2 Consumed<KIn, VIn>

Consumed

arg3 ProcessorSupplier<KIn, VIn, Void, Void>

ProcessorSupplier

Returns

StreamsBuilder

StreamsBuilder

Type Parameters

KIn
VIn

AddStateStore(StoreBuilder)

public StreamsBuilder AddStateStore(StoreBuilder arg0)

Parameters

arg0 StoreBuilder

StoreBuilder

Returns

StreamsBuilder

StreamsBuilder

Build()

public Topology Build()

Returns

Topology

Topology

Build(Properties)

public Topology Build(Properties arg0)

Parameters

arg0 Properties

Properties

Returns

Topology

Topology

GlobalTable<K, V>(String)

public GlobalKTable<K, V> GlobalTable<K, V>(String arg0)

Parameters

arg0 String

String

Returns

GlobalKTable<K, V>

GlobalKTable

Type Parameters

K
V

GlobalTable<K, V>(String, Consumed<K, V>)

public GlobalKTable<K, V> GlobalTable<K, V>(String arg0, Consumed<K, V> arg1)

Parameters

arg0 String

String

arg1 Consumed<K, V>

Consumed

Returns

GlobalKTable<K, V>

GlobalKTable

Type Parameters

K
V

GlobalTable<K, V>(String, Consumed<K, V>, Materialized<K, V, KeyValueStore<Bytes, byte[]>>)

public GlobalKTable<K, V> GlobalTable<K, V>(String arg0, Consumed<K, V> arg1, Materialized<K, V, KeyValueStore<Bytes, byte[]>> arg2)

Parameters

arg0 String

String

arg1 Consumed<K, V>

Consumed

arg2 Materialized<K, V, KeyValueStore<Bytes, byte[]>>

Materialized

Returns

GlobalKTable<K, V>

GlobalKTable

Type Parameters

K
V

GlobalTable<K, V>(String, Materialized<K, V, KeyValueStore<Bytes, byte[]>>)

public GlobalKTable<K, V> GlobalTable<K, V>(String arg0, Materialized<K, V, KeyValueStore<Bytes, byte[]>> arg1)

Parameters

arg0 String

String

arg1 Materialized<K, V, KeyValueStore<Bytes, byte[]>>

Materialized

Returns

GlobalKTable<K, V>

GlobalKTable

Type Parameters

K
V

Stream<K, V>(String)

public KStream<K, V> Stream<K, V>(String arg0)

Parameters

arg0 String

String

Returns

KStream<K, V>

KStream

Type Parameters

K
V

Stream<K, V>(String, Consumed<K, V>)

public KStream<K, V> Stream<K, V>(String arg0, Consumed<K, V> arg1)

Parameters

arg0 String

String

arg1 Consumed<K, V>

Consumed

Returns

KStream<K, V>

KStream

Type Parameters

K
V

Stream<K, V>(Collection<String>)

public KStream<K, V> Stream<K, V>(Collection<String> arg0)

Parameters

arg0 Collection<String>

Collection

Returns

KStream<K, V>

KStream

Type Parameters

K
V

Stream<K, V>(Collection<String>, Consumed<K, V>)

public KStream<K, V> Stream<K, V>(Collection<String> arg0, Consumed<K, V> arg1)

Parameters

arg0 Collection<String>

Collection

arg1 Consumed<K, V>

Consumed

Returns

KStream<K, V>

KStream

Type Parameters

K
V

Stream<K, V>(Pattern)

public KStream<K, V> Stream<K, V>(Pattern arg0)

Parameters

arg0 Pattern

Pattern

Returns

KStream<K, V>

KStream

Type Parameters

K
V

Stream<K, V>(Pattern, Consumed<K, V>)

public KStream<K, V> Stream<K, V>(Pattern arg0, Consumed<K, V> arg1)

Parameters

arg0 Pattern

Pattern

arg1 Consumed<K, V>

Consumed

Returns

KStream<K, V>

KStream

Type Parameters

K
V

Table<K, V>(String)

public KTable<K, V> Table<K, V>(String arg0)

Parameters

arg0 String

String

Returns

KTable<K, V>

KTable

Type Parameters

K
V

Table<K, V>(String, Consumed<K, V>)

public KTable<K, V> Table<K, V>(String arg0, Consumed<K, V> arg1)

Parameters

arg0 String

String

arg1 Consumed<K, V>

Consumed

Returns

KTable<K, V>

KTable

Type Parameters

K
V

Table<K, V>(String, Consumed<K, V>, Materialized<K, V, KeyValueStore<Bytes, byte[]>>)

public KTable<K, V> Table<K, V>(String arg0, Consumed<K, V> arg1, Materialized<K, V, KeyValueStore<Bytes, byte[]>> arg2)

Parameters

arg0 String

String

arg1 Consumed<K, V>

Consumed

arg2 Materialized<K, V, KeyValueStore<Bytes, byte[]>>

Materialized

Returns

KTable<K, V>

KTable

Type Parameters

K
V

Table<K, V>(String, Materialized<K, V, KeyValueStore<Bytes, byte[]>>)

public KTable<K, V> Table<K, V>(String arg0, Materialized<K, V, KeyValueStore<Bytes, byte[]>> arg1)

Parameters

arg0 String

String

arg1 Materialized<K, V, KeyValueStore<Bytes, byte[]>>

Materialized

Returns

KTable<K, V>

KTable

Type Parameters

K
V