@@ -3,7 +3,7 @@ namespace SqlStreamStore.FSharp
33open SqlStreamStore.Streams
44
55module Read =
6- /// Read forwards from the all stream.
6+ /// Read forwards from the all stream.
77 let allForwards ( store : SqlStreamStore.IStreamStore )
88 ( startPositionInclusive : StartPosition )
99 ( msgCount : int )
@@ -37,20 +37,20 @@ module Read =
3737 ReadRaw.streamBackwards store streamName readVersion msgCount
3838 |> ExceptionsHandler.asyncExceptionHandler
3939
40- /// Read forwards from the all stream, prefetching the messages' jsonData.
40+ /// Read forwards from the all stream, prefetching the messages' jsonData.
4141 let allForwardsPrefetch ( store : SqlStreamStore.IStreamStore )
4242 ( startPositionInclusive : StartPosition )
4343 ( msgCount : int )
4444 : Async < Result < ReadAllPage , exn >> =
45- ReadRaw.allForwardsPrefetch store startPositionInclusive msgCount true
45+ ReadRaw.allForwardsPrefetch store startPositionInclusive msgCount
4646 |> ExceptionsHandler.asyncExceptionHandler
4747
48- /// Read backwards from the all stream, prefetching the messages' jsonData.
48+ /// Read backwards from the all stream, prefetching the messages' jsonData.
4949 let allBackwardsPrefetch ( store : SqlStreamStore.IStreamStore )
5050 ( startPositionInclusive : StartPosition )
5151 ( msgCount : int )
5252 : Async < Result < ReadAllPage , exn >> =
53- ReadRaw.allBackwardsPrefetch store startPositionInclusive msgCount true
53+ ReadRaw.allBackwardsPrefetch store startPositionInclusive msgCount
5454 |> ExceptionsHandler.asyncExceptionHandler
5555
5656 /// Read forwards from a specific stream, prefetching the messages' jsonData.
@@ -59,7 +59,7 @@ module Read =
5959 ( readVersion : ReadVersion )
6060 ( msgCount : int )
6161 : Async < Result < ReadStreamPage , exn >> =
62- ReadRaw.streamForwardsPrefetch store streamName readVersion msgCount true
62+ ReadRaw.streamForwardsPrefetch store streamName readVersion msgCount
6363 |> ExceptionsHandler.asyncExceptionHandler
6464
6565 /// Read backwards from a specific stream, prefetching the messages' jsonData.
@@ -68,5 +68,5 @@ module Read =
6868 ( readVersion : ReadVersion )
6969 ( msgCount : int )
7070 : Async < Result < ReadStreamPage , exn >> =
71- ReadRaw.streamBackwardsPrefetch store streamName readVersion msgCount true
71+ ReadRaw.streamBackwardsPrefetch store streamName readVersion msgCount
7272 |> ExceptionsHandler.asyncExceptionHandler
0 commit comments