Skip to content

Commit

Permalink
Update index.md
Browse files Browse the repository at this point in the history
Repair broken links
  • Loading branch information
deadmouse committed Feb 21, 2023
1 parent 36e4ad4 commit 375ef70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/docs/BestPractices/SubscriberCodeunits/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Let's discuss all points

Every time a subscriber gets called, a new instance of the codeunit is being loaded in memory, which takes memory and processing power. The smaller the codeunit, the less memory, and the faster it is.

Therefore, it's suggested to split the subscribers by functionality and avoid putting business logic in the actual codeunit. Tip: put all business logic in an "[Method Codeunit](https://alguidelines.dev/bcpatterns/generic-method-pattern/)".
Therefore, it's suggested to split the subscribers by functionality and avoid putting business logic in the actual codeunit. Tip: put all business logic in an "[Method Codeunit](https://alguidelines.dev/docs/patterns/generic-method-pattern/)".

Examples:

Expand Down Expand Up @@ -198,4 +198,4 @@ Avoid subscribers to these events.

## References

The [Generic Method Pattern](https://alguidelines.dev/bcpatterns/generic-method-pattern/)
The [Generic Method Pattern](https://alguidelines.dev/docs/patterns/generic-method-pattern/)

0 comments on commit 375ef70

Please sign in to comment.