Class KeyValueSupport<K, V>
Support class for https://www.javadoc.io/doc/org.apache.kafka/kafka-streams/4.0.0/org/apache/kafka/streams/KeyValue.html#org.apache.kafka.streams.KeyValue
public class KeyValueSupport<K, V> : JVMBridgeBase<KeyValueSupport<K, V>>, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition
Type Parameters
K
V
- Inheritance
-
JVMBridgeBase<KeyValueSupport<K, V>>KeyValueSupport<K, V>
- Implements
- Inherited Members
-
JVMBridgeBase<KeyValueSupport<K, V>>.SExecuteWithSignature<TReturn>(string, string, params object[])
Constructors
KeyValueSupport()
Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge
public KeyValueSupport()
KeyValueSupport(IJavaObject)
Initialize a new instance of KeyValueSupport<K, V> from an instance of https://www.javadoc.io/doc/org.apache.kafka/kafka-streams/4.0.0/org/apache/kafka/streams/KeyValue.html#org.apache.kafka.streams.KeyValue(java.lang.Object,java.lang.Object)
public KeyValueSupport(IJavaObject obj)
Parameters
obj
IJavaObjectThe IJavaObject referring KeyValue<K, V>
Properties
BridgeClassName
https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeBase_BridgeClassName.htm
public override string BridgeClassName { get; }
Property Value
IsBridgeAbstract
public override bool IsBridgeAbstract { get; }
Property Value
IsBridgeCloseable
public override bool IsBridgeCloseable { get; }
Property Value
IsBridgeInterface
public override bool IsBridgeInterface { get; }
Property Value
IsBridgeStatic
public override bool IsBridgeStatic { get; }
Property Value
Key
The value of the field key
public K Key { get; }
Property Value
- K
Value
The value of the field value
public V Value { get; }
Property Value
- V
Methods
ToKeyValue()
Convert this instance into an instance of KeyValue<K, V>
public KeyValue<K, V> ToKeyValue()
Returns
- KeyValue<K, V>
An instance of KeyValue<K, V>
ToKeyValue(KeyValueSupport<K, V>)
Convert the kvs
into an instance of KeyValue<K, V>
public static KeyValue<K, V> ToKeyValue(KeyValueSupport<K, V> kvs)
Parameters
kvs
KeyValueSupport<K, V>An instance of KeyValueSupport<K, V>
Returns
- KeyValue<K, V>
An instance of KeyValue<K, V>