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 Summary
All 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
-
onSuccess
void onSuccess(AsyncTouchResult result)
Callback method for successful asynchronous touch.
-
onFailure
void onFailure(AsyncTouchResult result)
Callback method for failed asynchronous touch.
-
onAbort
void onAbort(AsyncTouchResult result)
Callback method for aborted asynchronous touch.
-
-