Skip to content

Commit

Permalink
[doc] move transport doc to folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
makasim committed Apr 24, 2017
1 parent 94ca0b5 commit bddaf5b
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Features:

* [JMS](https://docs.oracle.com/javaee/7/api/javax/jms/package-summary.html) like transport [abstraction](https://github.com/php-enqueue/psr-queue).
* Feature rich.
* Supports [AMQP](docs/amqp_transport.md) (RabbitMQ, ActiveMQ and others), [STOMP](docs/stomp_transport.md) (RabbitMQ, ActiveMQ and others), [Redis](docs/redis_transport.md), Doctrine DBAL, [Filesystem](docs/filesystem_transport.md), [Null](docs/null_transport.md) transports.
* Supports [AMQP](docs/transport/amqp.md) (RabbitMQ, ActiveMQ and others), [STOMP](docs/transport/stomp.md) (RabbitMQ, ActiveMQ and others), [Redis](docs/transport/redis.md), [Doctrine DBAL](docs/transport/dbal.md), [Filesystem](docs/transport/filesystem.md), [Null](docs/transport/null.md) transports.
* Generic purpose abstraction level (the transport level).
* "Opinionated" easy to use abstraction level (the client level).
* [Message bus](http://www.enterpriseintegrationpatterns.com/patterns/messaging/MessageBus.html) support.
Expand Down
12 changes: 6 additions & 6 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

* [Quick tour](quick_tour.md)
* Transports
- [Amqp (RabbitMQ, ActiveMQ)](amqp_transport.md)
- [Stomp (RabbitMQ, ActiveMQ)](stomp_transport.md)
- [Redis](redis_transport.md)
- [Doctrine DBAL](dbal_transport.md)
- [Filesystem](filesystem_transport.md)
- [Null](null_transport.md)
- [Amqp (RabbitMQ, ActiveMQ)](transport/amqp.md)
- [Stomp (RabbitMQ, ActiveMQ)](transport/stomp.md)
- [Redis](transport/redis.md)
- [Doctrine DBAL](transport/dbal.md)
- [Filesystem](transport/filesystem.md)
- [Null](transport/null.md)
* Consumption
- [Extensions](consumption/extensions.md)
- [Message processor](consumption/message_processor.md)
Expand Down
2 changes: 1 addition & 1 deletion docs/amqp_transport.md → docs/transport/amqp.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,4 @@ $queue = $psrContext->createQueue('aQueue');
$psrContext->purge($queue);
```

[back to index](index.md)
[back to index](../index.md)
2 changes: 1 addition & 1 deletion docs/dbal_transport.md → docs/transport/dbal.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ $message = $consumer->receive();
// process a message
```

[back to index](index.md)
[back to index](../index.md)
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ $fooQueue = $psrContext->createQueue('aQueue');
$psrContext->purge($fooQueue);
```

[back to index](index.md)
[back to index](../index.md)
2 changes: 1 addition & 1 deletion docs/null_transport.md → docs/transport/null.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ $connectionFactory = new NullConnectionFactory();
$psrContext = $connectionFactory->createContext();
```

[back to index](index.md)
[back to index](../index.md)
2 changes: 1 addition & 1 deletion docs/redis_transport.md → docs/transport/redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,4 @@ $fooTopic = $psrContext->createTopic('aTopic');
$psrContext->deleteTopic($fooTopic);
```

[back to index](index.md)
[back to index](../index.md)
File renamed without changes.

0 comments on commit bddaf5b

Please sign in to comment.