Table of Contents

Class Record

Namespace
Org.Apache.Kafka.Streams.Processor.Api
Assembly
MASES.KNet.dll
public class Record : JVMBridgeBase<Record>, IDynamicMetaObjectProvider, IJVMBridgeCore, IEquatable<IJVMBridgeBaseInstance>, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeBaseInstance, IJVMBridgeDefinition
Inheritance
Record
Implements

Constructors

Record(IJVMBridgeBaseInitializer)

Initializer used internally by JCOBridge. Do not use directly.

[Obsolete("This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public Record(IJVMBridgeBaseInitializer initializer)

Parameters

initializer IJVMBridgeBaseInitializer

Record(object, object, long)

public Record(object arg0, object arg1, long arg2)

Parameters

arg0 object

object

arg1 object

object

arg2 long

long

Record(object, object, long, Headers)

public Record(object arg0, object arg1, long arg2, Headers arg3)

Parameters

arg0 object

object

arg1 object

object

arg2 long

long

arg3 Headers

Headers

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 java.lang.AutoCloseable

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

CreatePoolableInstance(object, object, long)

HPA initializer for Record(object arg0, object arg1, long arg2)

public static Record CreatePoolableInstance(object arg0, object arg1, long arg2)

Parameters

arg0 object
arg1 object
arg2 long

Returns

Record

CreatePoolableInstance(object, object, long, Headers)

HPA initializer for Record(object arg0, object arg1, long arg2, Org.Apache.Kafka.Common.Header.Headers arg3)

public static Record CreatePoolableInstance(object arg0, object arg1, long arg2, Headers arg3)

Parameters

arg0 object
arg1 object
arg2 long
arg3 Headers

Returns

Record

Headers()

public Headers Headers()

Returns

Headers

Headers

Key()

public object Key()

Returns

object

object

Timestamp()

public long Timestamp()

Returns

long

long

Value()

public object Value()

Returns

object

object

WithHeaders(Headers)

public Record WithHeaders(Headers arg0)

Parameters

arg0 Headers

Headers

Returns

Record

Record

WithKey(object)

public Record WithKey(object arg0)

Parameters

arg0 object

object

Returns

Record

Record

WithTimestamp(long)

public Record WithTimestamp(long arg0)

Parameters

arg0 long

long

Returns

Record

Record

WithValue(object)

public Record WithValue(object arg0)

Parameters

arg0 object

object

Returns

Record

Record