com.google.common.cache
Class RemovalListeners

java.lang.Object
  extended by com.google.common.cache.RemovalListeners

@Beta
public final class RemovalListeners
extends Object

A collection of common removal listeners.

Since:
10.0
Author:
Charles Fry

Method Summary
static
<K,V> RemovalListener<K,V>
asynchronous(RemovalListener<K,V> listener, Executor executor)
          Returns an asynchronous RemovalListener which processes all eviction notifications asynchronously, using executor.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

asynchronous

public static <K,V> RemovalListener<K,V> asynchronous(RemovalListener<K,V> listener,
                                                      Executor executor)
Returns an asynchronous RemovalListener which processes all eviction notifications asynchronously, using executor.

Parameters:
listener - the backing listener
executor - the executor with which removal notifications are asynchronously executed


Copyright © 2010-2011. All Rights Reserved.