Package org.apache.jackrabbit.core.data
Interface AsyncTouchCallback
- 
- All Known Implementing Classes:
- CachingDataStore,- CachingFDS,- S3DataStore,- VFSDataStore
 
 public interface AsyncTouchCallbackThis interface defines callback methods to reflect the status of asynchronous touch.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonAbort(AsyncTouchResult result)Callback method for aborted asynchronous touch.voidonFailure(AsyncTouchResult result)Callback method for failed asynchronous touch.voidonSuccess(AsyncTouchResult result)Callback method for successful asynchronous touch.
 
- 
- 
- 
Method Detail- 
onSuccessvoid onSuccess(AsyncTouchResult result) Callback method for successful asynchronous touch.
 - 
onFailurevoid onFailure(AsyncTouchResult result) Callback method for failed asynchronous touch.
 - 
onAbortvoid onAbort(AsyncTouchResult result) Callback method for aborted asynchronous touch.
 
- 
 
-