All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.avaje.ebean.ignite.IgCachePlugin Maven / Gradle / Ivy

The newest version!
package org.avaje.ebean.ignite;

import com.avaje.ebean.BackgroundExecutor;
import com.avaje.ebean.cache.ServerCacheFactory;
import com.avaje.ebean.cache.ServerCachePlugin;
import com.avaje.ebean.config.ServerConfig;

/**
 * Cache plugin that creates the Ignite ServerCacheFactory.
 */
public class IgCachePlugin implements ServerCachePlugin {

  /**
   * Create the Ignite ServerCacheFactory implementation.
   */
  @Override
  public ServerCacheFactory create(ServerConfig config, BackgroundExecutor executor) {
    return new IgCacheFactory(config, executor);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy