Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update quick_tour.md #569

Merged
merged 1 commit into from
Oct 19, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/quick_tour.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The transport layer or PSR (Enqueue message service) is a Message Oriented Middl
It is a messaging component that allows applications to create, send, receive, and read messages.
It allows the communication between different components of a distributed application to be loosely coupled, reliable, and asynchronous.

PSR is inspired by JMS (Java Message Service). We tried to be as close as possible to [JSR 914](https://docs.oracle.com/javaee/7/api/javax/jms/package-summary.html) specification.
PSR is inspired by JMS (Java Message Service). We tried to stay as close as possible to the [JSR 914](https://docs.oracle.com/javaee/7/api/javax/jms/package-summary.html) specification.
For now it supports [AMQP](https://www.rabbitmq.com/tutorials/amqp-concepts.html) and [STOMP](https://stomp.github.io/) message queue protocols.
You can connect to many modern brokers such as [RabbitMQ](https://www.rabbitmq.com/), [ActiveMQ](http://activemq.apache.org/) and others.

Expand Down Expand Up @@ -157,8 +157,8 @@ $queueConsumer->consume();
## Client

It provides an easy to use high level abstraction.
The goal of the component is hide as much as possible low level details so you can concentrate on things that really matters.
For example, It configure a broker for you by creating queues, exchanges and bind them.
The goal of the component is to hide as much as possible low level details so you can concentrate on things that really matter.
For example, it configures a broker for you by creating queues, exchanges and bind them.
It provides easy to use services for producing and processing messages.
It supports unified format for setting message expiration, delay, timestamp, correlation id.
It supports [message bus](http://www.enterpriseintegrationpatterns.com/patterns/messaging/MessageBus.html) so different applications can talk to each other.
Expand Down