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

com.avaje.ebeaninternal.server.cache.CacheChangeBeanUpdate Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
package com.avaje.ebeaninternal.server.cache;

import com.avaje.ebeaninternal.server.deploy.BeanDescriptor;

import java.util.Map;

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

  private final BeanDescriptor desc;
  private final Object id;
  private final Map changes;
  private final boolean updateNaturalKey;
  private final long version;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy