Uses of Interface
org.elasticsearch.common.CheckedRunnable
-
Packages that use CheckedRunnable Package Description org.elasticsearch.action org.elasticsearch.index.engine -
-
Uses of CheckedRunnable in org.elasticsearch.action
Methods in org.elasticsearch.action with parameters of type CheckedRunnable Modifier and Type Method Description static <T> ActionRunnable<T>ActionRunnable. run(ActionListener<T> listener, CheckedRunnable<Exception> runnable)Creates aRunnablethat invokes the given listener withnullafter the given runnable has executed.static <Response> ActionListener<Response>ActionListener. runBefore(ActionListener<Response> delegate, CheckedRunnable<?> runBefore)Wraps a given listener and returns a new listener which executes the providedrunBeforecallback before the listener is notified via either#onResponseor#onFailure. -
Uses of CheckedRunnable in org.elasticsearch.index.engine
Constructors in org.elasticsearch.index.engine with parameters of type CheckedRunnable Constructor Description IndexCommitRef(IndexCommit indexCommit, CheckedRunnable<IOException> onClose)
-