You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/quick_tour.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ The transport layer or PSR (Enqueue message service) is a Message Oriented Middl
12
12
It is a messaging component that allows applications to create, send, receive, and read messages.
13
13
It allows the communication between different components of a distributed application to be loosely coupled, reliable, and asynchronous.
14
14
15
-
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.
15
+
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.
16
16
For now it supports [AMQP](https://www.rabbitmq.com/tutorials/amqp-concepts.html) and [STOMP](https://stomp.github.io/) message queue protocols.
17
17
You can connect to many modern brokers such as [RabbitMQ](https://www.rabbitmq.com/), [ActiveMQ](http://activemq.apache.org/) and others.
18
18
@@ -157,8 +157,8 @@ $queueConsumer->consume();
157
157
## Client
158
158
159
159
It provides an easy to use high level abstraction.
160
-
The goal of the component is hide as much as possible low level details so you can concentrate on things that really matters.
161
-
For example, It configure a broker for you by creating queues, exchanges and bind them.
160
+
The goal of the component is to hide as much as possible low level details so you can concentrate on things that really matter.
161
+
For example, it configures a broker for you by creating queues, exchanges and bind them.
162
162
It provides easy to use services for producing and processing messages.
163
163
It supports unified format for setting message expiration, delay, timestamp, correlation id.
164
164
It supports [message bus](http://www.enterpriseintegrationpatterns.com/patterns/messaging/MessageBus.html) so different applications can talk to each other.
0 commit comments