File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
- # PSB - ProophServiceBus
1
+ # Prooph Service Bus
2
2
3
3
PHP 7.1+ lightweight message bus supporting CQRS and Micro Services
4
4
Original file line number Diff line number Diff line change 1
1
# Async Message Producer
2
2
3
- Messaging becomes really interesting if you process your messages asynchronously. PSB can
3
+ Messaging becomes really interesting if you process your messages asynchronously. Prooph Service Bus can
4
4
hide such an asynchronous workflow behind a unified interface. You can start with synchronous message
5
5
dispatching by routing your messages directly to message handlers and if you later want to improve response
6
6
times you can switch to async processing on a per message basis by routing the appropriate messages to a
Original file line number Diff line number Diff line change 1
- # PSB Plugins
1
+ # Prooph Service Bus Plugins
2
2
3
3
Plugins extend a message bus with additional functionality.
4
- PSB ships with a list of useful plugins that can be mixed and matched with your own implementations:
4
+ Prooph Service Bus ships with a list of useful plugins that can be mixed and matched with your own implementations:
5
5
6
6
## Routers
7
7
@@ -111,7 +111,7 @@ $router->attachToMessageBus($commandBus);
111
111
## Invoke Strategies
112
112
113
113
An invoke strategy knows how a message handler can be invoked. You can register many invoke strategies at once depending on
114
- how many different handler types you are using. The best way is to choose a convention and go with it. PSB ships with the invoke strategies
114
+ how many different handler types you are using. The best way is to choose a convention and go with it. Prooph Service Bus ships with the invoke strategies
115
115
listed below.
116
116
117
117
### Available Strategies
Original file line number Diff line number Diff line change 1
- # PSB Overview
1
+ # Prooph Service Bus Overview
2
2
3
3
prooph/service-bus acts as a messaging facade. It operates on the application layer and shields your domain model.
4
4
In addition we also provide so-called "message producers" which connect prooph/service-bus
@@ -79,7 +79,7 @@ It is pretty straight forward.
79
79
80
80
# Synchronous Versus Asynchronous Processing
81
81
82
- PSB provides both possibilities behind a unified interface.
82
+ Prooph Service Bus provides both possibilities behind a unified interface.
83
83
Remember the statement "Messaging means fire and forget".
84
84
The callee never knows if the message is processed synchronously or asynchronously.
85
85
A message can be directly routed to its handler. In this case, we talk about synchronous
You can’t perform that action at this time.
0 commit comments