use of org.apache.ignite.internal.processors.platform.cache.store.PlatformCacheStore in project ignite by apache.
the class CacheOsStoreManager method start0.
/** {@inheritDoc} */
@Override
protected void start0() throws IgniteCheckedException {
if (configured()) {
CacheStore store = configuredStore();
assert store != null;
assert !(store instanceof GridCacheWriteBehindStore);
if (store instanceof PlatformCacheStore) {
PlatformProcessor proc = ctx.platform();
proc.registerStore((PlatformCacheStore) store, configuredConvertBinary());
}
}
super.start0();
}
Aggregations