Table of Contents

Class Predicate<K, V, TJVMK, TJVMV>

Namespace
MASES.KNet.Streams.Kstream
Assembly
MASES.KNet.dll

KNet implementation of Predicate<K, V>

public abstract class Predicate<K, V, TJVMK, TJVMV> : Predicate<TJVMK, TJVMV>, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IPredicate<TJVMK, TJVMV>, IJVMBridgeBase, IJVMBridgeDefinition, IGenericSerDesFactoryApplier

Type Parameters

K

The key type

V

The value type

TJVMK

The JVM type of K

TJVMV

The JVM type of V

Inheritance
Predicate<TJVMK, TJVMV>
Predicate<K, V, TJVMK, TJVMV>
Implements
IPredicate<TJVMK, TJVMV>
Derived
Inherited Members

Properties

Factory

Returns the current IGenericSerDesFactory

protected IGenericSerDesFactory Factory { get; }

Property Value

IGenericSerDesFactory

Key

The K content

public virtual K Key { get; }

Property Value

K

OnTest

public Func<Predicate<K, V, TJVMK, TJVMV>, bool> OnTest { get; set; }

Property Value

Func<Predicate<K, V, TJVMK, TJVMV>, bool>

Remarks

If OnTest has a value it takes precedence over corresponding Test() class method

Value

The V content

public virtual V Value { get; }

Property Value

V

Methods

Test()

public virtual bool Test()

Returns

bool

bool

Test(TJVMK, TJVMV)

public override sealed bool Test(TJVMK arg0, TJVMV arg1)

Parameters

arg0 TJVMK

K

arg1 TJVMV

V

Returns

bool

bool