Skip to content

Commit

Permalink
#118: better naming
Browse files Browse the repository at this point in the history
  • Loading branch information
lsulak committed Apr 3, 2024
1 parent 1fdeabb commit 7844278
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,9 @@ It brings:
* `class SlickSingleResultFunctionWithStatus` - abstract class for DB functions with status handling; it requires an
implementation of `StatusHandling` to be mixed-in (`StandardStatusHandling` available out-of-the-box)
* `class SlickMultipleResultFunctionWithStatus` - as `SlickSingleResultFunctionWithStatus` but for multiple record
retrieval, it requires an implementation of `StatusAggregation` to be mixed-in
(`AggregateByFirstError`, `AggregateByFirstRow`, and `AggregateByMajorityErrors` available out of the box)
retrieval, it requires an implementation of `StatusAggregator` to be mixed-in
(`ByFirstErrorStatusAggregator`, `ByFirstRowStatusAggregator`, and `ByMajorityErrorsStatusAggregator` available
out of the box)
* `class SlickOptionalResultFunctionWithStatus` - as `SlickSingleResultFunctionWithStatus` but the returning record
is optional
* `trait FaDbPostgresProfile` - to bring support for Postgres and its extended data types in one class
Expand Down Expand Up @@ -166,8 +167,9 @@ It brings:
* `class DoobieSingleResultFunctionWithStatus` - abstract class for DB functions with status handling; it requires
an implementation of `StatusHandling` to be mixed-in (`StandardStatusHandling` available out-of-the-box)
* `class DoobieMultipleResultFunctionWithStatus` - as `DoobieSingleResultFunctionWithStatus` but for multiple record
retrieval, it requires an implementation of `StatusAggregation` to be mixed-in
(`AggregateByFirstError`, `AggregateByFirstRow`, and `AggregateByMajorityErrors` available out of the box)
retrieval, it requires an implementation of `StatusAggregator` to be mixed-in
(`ByFirstErrorStatusAggregator`, `ByFirstRowStatusAggregator`, and `ByMajorityErrorsStatusAggregator` available
out of the box)
* `class DoobieOptionalResultFunctionWithStatus` - as `DoobieSingleResultFunctionWithStatus` but the returning record
is optional

Expand Down

0 comments on commit 7844278

Please sign in to comment.