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

io.ebeaninternal.server.cache.CacheChangeBeanUpdate Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebeaninternal.server.cache;

import io.ebeaninternal.server.deploy.BeanDescriptor;

import java.util.Map;

/**
 * Put a new bean entry into the cache.
 */
final class CacheChangeBeanUpdate implements CacheChange {

  private final BeanDescriptor desc;
  private final String key;
  private final Map changes;
  private final boolean updateNaturalKey;
  private final long version;

  CacheChangeBeanUpdate(BeanDescriptor desc, String key, Map changes, boolean updateNaturalKey, long version) {
    this.desc = desc;
    this.key = key;
    this.changes = changes;
    this.updateNaturalKey = updateNaturalKey;
    this.version = version;
  }

  @Override
  public void apply() {
    desc.cacheApplyBeanUpdate(key, changes, updateNaturalKey, version);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy