org.apache.jcs.auxiliary.remote.behavior
Interface IRemoteCacheService

All Superinterfaces:
ICacheService, java.rmi.Remote
All Known Implementing Classes:
RemoteCacheServer, ZombieRemoteCacheService

public interface IRemoteCacheService
extends java.rmi.Remote, ICacheService

Used to retrieve and update the remote cache.


Method Summary
 java.util.Set getGroupKeys(java.lang.String cacheName, java.lang.String groupName)
           
 void remove(java.lang.String cacheName, java.io.Serializable key, long requesterId)
          Removes the given key from the specified cache.
 void removeAll(java.lang.String cacheName, long requesterId)
          Remove all keys from the sepcified cache.
 void update(ICacheElement item, long requesterId)
          Puts a cache item to the cache.
 
Methods inherited from interface org.apache.jcs.engine.behavior.ICacheService
dispose, get, release, remove, removeAll, update
 

Method Detail

update

public void update(ICacheElement item,
                   long requesterId)
            throws ObjectExistsException,
                   java.io.IOException
Puts a cache item to the cache.

Parameters:
item -
requesterId -
Throws:
ObjectExistsException
java.io.IOException

remove

public void remove(java.lang.String cacheName,
                   java.io.Serializable key,
                   long requesterId)
            throws java.io.IOException
Removes the given key from the specified cache.

Parameters:
cacheName -
key -
requesterId -
Throws:
java.io.IOException

removeAll

public void removeAll(java.lang.String cacheName,
                      long requesterId)
               throws java.io.IOException
Remove all keys from the sepcified cache.

Parameters:
cacheName -
requesterId -
Throws:
java.io.IOException

getGroupKeys

public java.util.Set getGroupKeys(java.lang.String cacheName,
                                  java.lang.String groupName)
                           throws java.rmi.RemoteException
Parameters:
cacheName -
groupName -
Returns:
A Set of keys
Throws:
java.rmi.RemoteException


Copyright © 2002-2005 Apache Software Foundation. All Rights Reserved.