Uses of Class
org.miaixz.bus.http.plugin.httpv.CoverCall.Client
Packages that use CoverCall.Client
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 CoverCall.Client in org.miaixz.bus.http
Methods in org.miaixz.bus.http that return CoverCall.ClientModifier and TypeMethodDescriptionStarts a WebSocket connection.Methods in org.miaixz.bus.http with parameters of type CoverCall.ClientModifier and TypeMethodDescriptionstatic StompStomp.over(CoverCall.Client task) Creates a STOMP client with automatic message acknowledgment.static StompStomp.over(CoverCall.Client task, boolean autoAck) Creates a STOMP client with a specified acknowledgment mode. -
Uses of CoverCall.Client in org.miaixz.bus.http.plugin.httpv
Methods in org.miaixz.bus.http.plugin.httpv that return CoverCall.ClientModifier and TypeMethodDescriptionCoverCall.Client.heatbeat(int pingSeconds, int pongSeconds) Sets the heartbeat interval, overriding the default heartbeat mode.CoverCall.Client.setOnClosed(CoverCall.Register<CoverCall.Close> onClosed) Sets the closed listener (also called on cancellation or exception).CoverCall.Client.setOnClosing(CoverCall.Register<CoverCall.Close> onClosing) Sets the closing listener.CoverCall.Client.setOnException(CoverCall.Register<Throwable> onException) Sets the connection exception listener.CoverCall.Client.setOnMessage(CoverCall.Register<CoverCall.Message> onMessage) Sets the message listener.CoverCall.Client.setOnOpen(CoverCall.Register<CoverResult> onOpen) Sets the open connection listener.Constructors in org.miaixz.bus.http.plugin.httpv with parameters of type CoverCall.ClientModifierConstructorDescriptionListener(CoverCall.Client client, CoverCall webSocket) Constructs a new listener.