Class PlatformAbstractPredicate
- java.lang.Object
-
- org.apache.ignite.internal.processors.platform.PlatformAbstractPredicate
-
- All Implemented Interfaces:
Externalizable,Serializable
- Direct Known Subclasses:
PlatformCacheEntryFilterImpl,PlatformClusterNodeFilterImpl,PlatformMessageFilterImpl,PlatformStreamReceiverImpl
public abstract class PlatformAbstractPredicate extends Object implements Externalizable
Base interop predicate. Delegates apply to native platform.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected PlatformContextctxInterop processor.protected Objectpred.Net binary predicateprotected longptrPointer to deployed predicate.
-
Constructor Summary
Constructors Modifier Constructor Description PlatformAbstractPredicate()Externalizablesupport.protectedPlatformAbstractPredicate(Object pred, long ptr, PlatformContext ctx)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidreadExternal(ObjectInput in)voidwriteExternal(ObjectOutput out)
-
-
-
Field Detail
-
pred
protected Object pred
.Net binary predicate
-
ptr
protected transient long ptr
Pointer to deployed predicate.
-
ctx
protected transient PlatformContext ctx
Interop processor.
-
-
Constructor Detail
-
PlatformAbstractPredicate
public PlatformAbstractPredicate()
Externalizablesupport.
-
PlatformAbstractPredicate
protected PlatformAbstractPredicate(Object pred, long ptr, PlatformContext ctx)
Constructor.- Parameters:
pred- .Net binary predicate.ptr- Pointer to predicate in the native platform.ctx- Kernal context.
-
-
Method Detail
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Specified by:
writeExternalin interfaceExternalizable- Throws:
IOException
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Specified by:
readExternalin interfaceExternalizable- Throws:
IOExceptionClassNotFoundException
-
-