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 Detail

      • create

        T create()
        Constructs and returns a fully configured instance of T.
        Returns:
        An instance of T.