Hi, See https://apacheignite.readme.io/docs/plugins for information on plugins. Sample Implementaiton: https://github.com/apache/ignite/blob/ignite-2.5/modules/compatibility/src/test/java/org/apache/ignite/compatibility/testframework/plugins/TestCompatibilityPluginProvider.java
Another test implementation: https://github.com/apache/ignite/blob/master/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/wal/memtracker/PageMemoryTrackerPluginProvider.java the plugin() method returns an instance of this plugin. the createComponent API is called internally by Ignite to create components inside your plugin. for example to create a security related component: if (cls.equals(GridSecurityProcessor.class)) { return new MySecurityProcessor(...); } Thanks, Alex -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/
