Update docs

This commit is contained in:
Tadgh 2021-04-13 10:04:45 -04:00
parent d695e35e59
commit a0c11d7c66
2 changed files with 13 additions and 0 deletions

View File

@ -1416,6 +1416,9 @@ public enum Pointcut implements IPointcut {
* <li>
* ca.uhn.fhir.rest.api.server.storage.TransactionDetails - The outer transaction details object (since 5.0.0)
* </li>
* <li>
* Boolean - Whether this pointcut invocation was deferred or not(since 5.4.0)
* </li>
* </ul>
* <p>
* Hooks should return <code>void</code>.
@ -1460,6 +1463,9 @@ public enum Pointcut implements IPointcut {
* <li>
* ca.uhn.fhir.rest.api.server.storage.TransactionDetails - The outer transaction details object (since 5.0.0)
* </li>
* <li>
* Boolean - Whether this pointcut invocation was deferred or not(since 5.4.0)
* </li>
* </ul>
* <p>
* Hooks should return <code>void</code>.
@ -1501,6 +1507,9 @@ public enum Pointcut implements IPointcut {
* <li>
* ca.uhn.fhir.rest.api.server.storage.TransactionDetails - The outer transaction details object (since 5.0.0)
* </li>
* <li>
* Boolean - Whether this pointcut invocation was deferred or not(since 5.4.0)
* </li>
* </ul>
* <p>
* Hooks should return <code>void</code>.

View File

@ -0,0 +1,4 @@
---
type: add
issue: 2534
title: "Add new pointcut `STORAGE_TRANSACTION_PROCESSED`, which fires after all operations in a transaction have executed."