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

remove outbox store #523

Merged
merged 2 commits into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
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
12 changes: 0 additions & 12 deletions docs/pages/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ You can:
* Create and delete `databases`
* Create, update and delete `schemas`
* Manage `projections`
* Consume `outbox` messages

## Database commands

Expand Down Expand Up @@ -45,17 +44,6 @@ To manage your projectors there are the following cli commands.

You can find out more about projections [here](projection.md).

## Outbox commands

Interacting with the outbox store is also possible via the cli.

* OutboxInfoCommand: `event-sourcing:outbox:info`
* OutboxConsumeCommand: `event-sourcing:outbox:consume`

!!! note

You can find out more about outbox [here](outbox.md).

## Inspector commands

The inspector is a tool to inspect the event streams.
Expand Down
12 changes: 0 additions & 12 deletions docs/pages/event_bus.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,18 +228,6 @@ $eventBus = new Psr14EventBus($psr14EventDispatcher);

You can't use the `Subscribe` attribute with the psr-14 event bus.

## Chain Event Bus

If you want to use multiple event buses, you can use the `ChainEventBus`.

```php
use Patchlevel\EventSourcing\EventBus\ChainEventBus;

$eventBus = new ChainEventBus([
$eventBus1,
$eventBus2,
]);
```

## Learn more

Expand Down
93 changes: 0 additions & 93 deletions src/Console/Command/OutboxConsumeCommand.php

This file was deleted.

52 changes: 0 additions & 52 deletions src/Console/Command/OutboxInfoCommand.php

This file was deleted.

21 changes: 0 additions & 21 deletions src/EventBus/ChainEventBus.php

This file was deleted.

55 changes: 0 additions & 55 deletions src/EventBus/Serializer/EventSerializerMessageSerializer.php

This file was deleted.

14 changes: 0 additions & 14 deletions src/EventBus/Serializer/MessageSerializer.php

This file was deleted.

41 changes: 0 additions & 41 deletions src/EventBus/Serializer/PhpNativeMessageSerializer.php

This file was deleted.

Loading
Loading