Package org.apache.ignite.platform
Interface PlatformJavaObjectFactory<T>
-
public interface PlatformJavaObjectFactory<T>
Object factory used for advanced interop between platform and Java.Use it when you need Java component for some Ignite feature in platform code. E.g. Java-based continuous query filter.
You should implement the factory, compile it and then place it into node's classpath. Then you can reference the factory form platform code using it's fully-qualified Java class name.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
create()
Constructs and returns a fully configured instance of T.
-
-
-
Method Detail
-
create
T create()
Constructs and returns a fully configured instance of T.- Returns:
- An instance of T.
-
-