Table of Contents

Class Processor<KIn, VIn, KOut, VOut>

Namespace
MASES.KNet.Streams.Processor.Api
Assembly
MASES.KNet.dll
public class Processor<KIn, VIn, KOut, VOut> : Processor<KIn, VIn, KOut, VOut, byte[], byte[], byte[], byte[]>, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IProcessor<byte[], byte[], byte[], byte[]>, IJVMBridgeBase, IJVMBridgeDefinition, IGenericSerDesFactoryApplier

Type Parameters

KIn

The input key type

VIn

The input key type

KOut

The output key type

VOut

The output value type

Inheritance
Processor<KIn, VIn, KOut, VOut, byte[], byte[], byte[], byte[]>
Processor<KIn, VIn, KOut, VOut>
Implements
Inherited Members

Properties

Context

public override ProcessorContext<KOut, VOut, byte[], byte[]> Context { get; }

Property Value

ProcessorContext<KOut, VOut, byte[], byte[]>

OnInit

public Action<ProcessorContext<KOut, VOut, byte[], byte[]>> OnInit { get; set; }

Property Value

Action<ProcessorContext<KOut, VOut, byte[], byte[]>>

Remarks

If OnInit has a value it takes precedence over corresponding class method

OnProcess

public Action<Record<KIn, VIn, byte[], byte[]>> OnProcess { get; set; }

Property Value

Action<Record<KIn, VIn, byte[], byte[]>>

Remarks

If OnProcess has a value it takes precedence over corresponding class method

Methods

Init(ProcessorContext<byte[], byte[]>)

public override sealed void Init(ProcessorContext<byte[], byte[]> arg0)

Parameters

arg0 ProcessorContext<byte[], byte[]>

ProcessorContext

Remarks

The method invokes the default implementation in the JVM interface using InitDefault(ProcessorContext<KOut, VOut>); override the method to implement a different behavior

Process(Record<byte[], byte[]>)

public override sealed void Process(Record<byte[], byte[]> arg0)

Parameters

arg0 Record<byte[], byte[]>

Record