Skip to content

Commit

Permalink
fixed merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
t-bonk committed Feb 22, 2024
1 parent 461c193 commit 9331153
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions java/outbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,6 @@ public class MySpringComponent {
}
```

<<<<<<< Updated upstream
### Outboxing Arbitrary CAP Services
=======
::: warning _❗ Warning_
Removing a custom outbox from the `outbox.services` section in the _application.yaml_ doesn't remove the
entries from the `cds.outbox.Messages` table. The entries remain in the `cds.outbox.Messages` table and won't get
Expand All @@ -159,7 +156,6 @@ Before removing a custom outbox, it must be ensured that there a no unprocessed
:::

### Outboxing CAP Service Events
>>>>>>> Stashed changes

Outbox services support outboxing of arbitrary CAP services. Typical use cases are remote OData
service calls, but also supports calls to other CAP services to decouple them from the business logic flow.
Expand All @@ -183,12 +179,7 @@ executed, if the API method internally calls the method `com.sap.cds.services.Se

::: warning _❗ Warning_
All calls to `run` methods of a service that implements the interface `com.sap.cds.services.cds.CqnService`
<<<<<<< Updated upstream
return null since they are executed asynchronous. The method `com.sap.cds.services.cds.CqnService.run(CqnSelect, ...)`
should not be called since the result will be lost because of the asynchronous behaviour of outboxed services.
=======
return null since they are executed asynchronously.
>>>>>>> Stashed changes
:::

A service wrapped by an outbox can be unboxed by calling the API `OutboxService.unboxed(Service)`; method calls to the unboxed
Expand Down

0 comments on commit 9331153

Please sign in to comment.