Class FixedKeyProcessor
public class FixedKeyProcessor : JVMBridgeListener, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition
- Inheritance
-
FixedKeyProcessor
- Implements
- Derived
- Inherited Members
Constructors
FixedKeyProcessor()
Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge
public FixedKeyProcessor()
FixedKeyProcessor(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 FixedKeyProcessor(params object[] args)
Parameters
args
object[]
Properties
BridgeClassName
Java class name to be instantiated
public override string BridgeClassName { get; }
Property Value
OnClose
public Action OnClose { get; set; }
Property Value
Remarks
If OnClose has a value it takes precedence over corresponding class method
OnInit
public Action<FixedKeyProcessorContext> OnInit { get; set; }
Property Value
Remarks
If OnInit has a value it takes precedence over corresponding class method
OnProcess
public Action<FixedKeyRecord> OnProcess { get; set; }
Property Value
Remarks
If OnProcess has a value it takes precedence over corresponding class method
Methods
Close()
public virtual void Close()
Remarks
The method invokes the default implementation in the JVM interface using CloseDefault(); override the method to implement a different behavior
CloseDefault()
public void CloseDefault()
Remarks
The method invokes the default implementation in the JVM interface
Init(FixedKeyProcessorContext)
public virtual void Init(FixedKeyProcessorContext arg0)
Parameters
Remarks
The method invokes the default implementation in the JVM interface using InitDefault(FixedKeyProcessorContext); override the method to implement a different behavior
InitDefault(FixedKeyProcessorContext)
public void InitDefault(FixedKeyProcessorContext arg0)
Parameters
Remarks
The method invokes the default implementation in the JVM interface
InitializeHandlers()
Handlers initializer for FixedKeyProcessor
protected virtual void InitializeHandlers()
Process(FixedKeyRecord)
public virtual void Process(FixedKeyRecord arg0)