James Taylor <[EMAIL PROTECTED]> writes:

> For the AuxilliaryCache interface, how about:
>
> public interface AuxiliaryCache extends ICacheType
> {
>     public void update( ICacheElement ce )
>         throws IOException;
>
>     public CacheElement get( Serializable key )
>         throws IOException;
>
>     public boolean remove( Serializable key )
>         throws IOException;
>
>     public void removeAll()
>         throws IOException;
>
>     public void dispose()
>         throws IOException;
>
>     public int getSize();
>
>     public int getStatus();
>
>     public String getCacheName();
> }

I am not aware of the implications of a switch to this interface, but
I find its simplicity very attractive.

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to