The java javax.jms.Connection.stop() method is used to stop the delivery of incoming messages to all message consumers on the connection. By invoking this method, the connection's delivery of incoming messages is temporarily halted until the connection is restarted using the start() method. This method can be useful when pausing the processing of messages temporarily, for example, during maintenance or debugging activities.
Java Connection.stop - 30 examples found. These are the top rated real world Java examples of javax.jms.Connection.stop extracted from open source projects. You can rate examples to help us improve the quality of examples.