Skip to content

Commit

Permalink
Merge pull request #186 from enumag/feature/remove-abbr
Browse files Browse the repository at this point in the history
Remove abbreviation
  • Loading branch information
prolic authored May 10, 2018
2 parents b6d491c + 7f5ffe0 commit 046842b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# PSB - ProophServiceBus
# Prooph Service Bus

PHP 7.1+ lightweight message bus supporting CQRS and Micro Services

Expand Down
2 changes: 1 addition & 1 deletion docs/async_message_producer.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Async Message Producer

Messaging becomes really interesting if you process your messages asynchronously. PSB can
Messaging becomes really interesting if you process your messages asynchronously. Prooph Service Bus can
hide such an asynchronous workflow behind a unified interface. You can start with synchronous message
dispatching by routing your messages directly to message handlers and if you later want to improve response
times you can switch to async processing on a per message basis by routing the appropriate messages to a
Expand Down
6 changes: 3 additions & 3 deletions docs/plugins.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# PSB Plugins
# Prooph Service Bus Plugins

Plugins extend a message bus with additional functionality.
PSB ships with a list of useful plugins that can be mixed and matched with your own implementations:
Prooph Service Bus ships with a list of useful plugins that can be mixed and matched with your own implementations:

## Routers

Expand Down Expand Up @@ -111,7 +111,7 @@ $router->attachToMessageBus($commandBus);
## Invoke Strategies

An invoke strategy knows how a message handler can be invoked. You can register many invoke strategies at once depending on
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
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
listed below.

### Available Strategies
Expand Down
4 changes: 2 additions & 2 deletions docs/service_bus_system.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# PSB Overview
# Prooph Service Bus Overview

prooph/service-bus acts as a messaging facade. It operates on the application layer and shields your domain model.
In addition we also provide so-called "message producers" which connect prooph/service-bus
Expand Down Expand Up @@ -79,7 +79,7 @@ It is pretty straight forward.

# Synchronous Versus Asynchronous Processing

PSB provides both possibilities behind a unified interface.
Prooph Service Bus provides both possibilities behind a unified interface.
Remember the statement "Messaging means fire and forget".
The callee never knows if the message is processed synchronously or asynchronously.
A message can be directly routed to its handler. In this case, we talk about synchronous
Expand Down

0 comments on commit 046842b

Please sign in to comment.