001package io.ebean.cache; 002 003/** 004 * Interface for both listening to notification changes and sending them to other members of the cluster. 005 */ 006public interface ServerCacheNotify { 007 008 /** 009 * Notify other server cache members of the table modifications or process the notifications. 010 */ 011 void notify(ServerCacheNotification notification); 012}