Package org.apache.jackrabbit.core.data
Interface AsyncTouchCallback
- All Known Implementing Classes:
CachingDataStore,CachingFDS
public interface AsyncTouchCallback
This interface defines callback methods to reflect the status of asynchronous
touch.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonAbort(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 Details
-
onSuccess
Callback method for successful asynchronous touch. -
onFailure
Callback method for failed asynchronous touch. -
onAbort
Callback method for aborted asynchronous touch.
-