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

com.turbospaces.ebean.BroadcastChannel Maven / Gradle / Ivy

There is a newer version: 2.0.33
Show newest version
package com.turbospaces.ebean;

import java.util.concurrent.CompletableFuture;

import org.jgroups.util.RspList;

import com.google.common.util.concurrent.FluentFuture;

import io.ebean.cache.ServerCacheNotification;
import io.ebean.cache.ServerCacheType;

public interface BroadcastChannel {
    FluentFuture>> broadcastPutAsync(String cacheKey, ServerCacheType type, String key, Object obj);
    FluentFuture>> broadcastRemoveAsync(String cacheKey, String key);
    FluentFuture>> broadcastClearAllAsync(String cacheKey);
    FluentFuture>> broadcastClearAllAsync();
    FluentFuture>> broadcastAsync(ServerCacheNotification notification, String data);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy