Home  >  Article  >  Java  >  Share some terms of JMS

Share some terms of JMS

零下一度
零下一度Original
2017-06-25 10:23:381430browse

Provider(MessageProvider):Producer
Consumer(MessageConsumer):Consumer
PTP:Point to Point, that is, point-to-point message model
Pub/Sub:Publish/Subscribe, that is, publish/subscribe Message model
Queue: Queue destination
Topic: Topic destination
ConnectionFactory: Connection factory, which JMS uses to create links
Connection: The link from JMS client to JMS Provider
Destination: The purpose of the message Ground
Session: Session, a thread that sends or receives messages

The above is the detailed content of Share some terms of JMS. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:ServletNext article:Servlet