com.alachisoft.ncache.web.caching
Interface AsyncItemUpdatedCallback
public interface AsyncItemUpdatedCallback
Provide method for notifying applications after a request for asynchronous insert operation
completes.
Method Summary |
void |
asyncItemUpdated(java.lang.String key,
java.lang.Object result)
This method is called when async insert operation completes |
asyncItemUpdated
void asyncItemUpdated(java.lang.String key,
java.lang.Object result)
- This method is called when async insert 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.