Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
titleCustom SPI
IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception {
	IgniteConfiguration cfg = ...

	cfg.setCacheObjectTransformSpi(new XXXTransformerSpi());

	return cfg;
}

...