Uses of Interface
org.miaixz.bus.http.plugin.httpv.CoverTasks.Listener
Packages that use CoverTasks.Listener
Package
Description
An HTTP client for Java applications.
Provides the core implementation classes for the Httpv client, including task management, execution, data conversion,
and WebSocket support.
-
Uses of CoverTasks.Listener in org.miaixz.bus.http
Methods in org.miaixz.bus.http that return CoverTasks.ListenerModifier and TypeMethodDescriptionHttpv.Builder.completeListener()Httpv.Builder.exceptionListener()Httpv.Builder.responseListener()Methods in org.miaixz.bus.http with parameters of type CoverTasks.ListenerModifier and TypeMethodDescriptionHttpv.Builder.completeListener(CoverTasks.Listener<CoverResult.State> listener) Sets a global listener for when a request is completed (either successfully or with an error).Httpv.Builder.exceptionListener(CoverTasks.Listener<IOException> listener) Sets a global listener for exceptions.Httpv.Builder.responseListener(CoverTasks.Listener<CoverResult> listener) Sets a global listener for successful responses. -
Uses of CoverTasks.Listener in org.miaixz.bus.http.plugin.httpv
Methods in org.miaixz.bus.http.plugin.httpv that return CoverTasks.ListenerModifier and TypeMethodDescriptionCoverTasks.Executor.getCompleteListener()CoverTasks.Executor.getExceptionListener()CoverTasks.Executor.getResponseListener()Constructors in org.miaixz.bus.http.plugin.httpv with parameters of type CoverTasks.ListenerModifierConstructorDescriptionExecutor(Executor ioExecutor, Executor mainExecutor, Downloads.Listener downloadListener, CoverTasks.Listener<CoverResult> responseListener, CoverTasks.Listener<IOException> exceptionListener, CoverTasks.Listener<CoverResult.State> completeListener, Convertor[] convertors) Constructs a new Executor.