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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description Tcreate()Constructs and returns a fully configured instance of T.
 
- 
- 
- 
Method Detail- 
createT create() Constructs and returns a fully configured instance of T.- Returns:
- An instance of T.
 
 
- 
 
-