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

io.ebean.cache.ServerCacheNotification Maven / Gradle / Ivy

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

import java.util.Set;

/**
 * Notification event that dependent tables have been modified.
 * 

* This is sent to other interested servers (in the cluster). */ public class ServerCacheNotification { private final Set dependentTables; public ServerCacheNotification(Set dependentTables) { this.dependentTables = dependentTables; } @Override public String toString() { return "tables:" + dependentTables; } public Set getDependentTables() { return dependentTables; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy