com.alachisoft.ncache.web.caching
Interface AsyncItemRemovedCallback
public interface AsyncItemRemovedCallback
Provide method for notifying applications after a request for asynchronous remove operation
completes.
Method Summary |
void |
asyncItemRemoved(java.lang.String key,
java.lang.Object result)
This method is called when async remove operation completes |
asyncItemRemoved
void asyncItemRemoved(java.lang.String key,
java.lang.Object result)
- This method is called when async remove operation completes
- Parameters:
key
- The cache key used to reference the item.result
- The result of the Async Operation. If the operation completes successfully,
it contatins 1 otherwise it contains an OperationFailedException indicating
the cause of operation failure.