Uses of Class
org.miaixz.bus.http.Stomp.Message
Packages that use Stomp.Message
-
Uses of Stomp.Message in org.miaixz.bus.http
Methods in org.miaixz.bus.http that return Stomp.MessageMethods in org.miaixz.bus.http with parameters of type Stomp.MessageModifier and TypeMethodDescriptionvoidStomp.ack(Stomp.Message message) Acknowledges the receipt of a message.voidStomp.send(Stomp.Message message) Sends a STOMP message to the server.Method parameters in org.miaixz.bus.http with type arguments of type Stomp.MessageModifier and TypeMethodDescriptionStomp.queue(String destination, List<Stomp.Header> headers, Callback<Stomp.Message> callback) Subscribes to a queue with additional headers.Stomp.queue(String destination, Callback<Stomp.Message> callback) Subscribes to a queue.Stomp.setOnError(Callback<Stomp.Message> onError) Sets the callback for error messages.Stomp.subscribe(String destination, List<Stomp.Header> headers, Callback<Stomp.Message> callback) Subscribes to a destination.Stomp.topic(String destination, List<Stomp.Header> headers, Callback<Stomp.Message> callback) Subscribes to a topic with additional headers.Stomp.topic(String destination, Callback<Stomp.Message> callback) Subscribes to a topic.