@@ -3,7 +3,7 @@ namespace SqlStreamStore.FSharp
3
3
open SqlStreamStore.Streams
4
4
5
5
module Read =
6
- /// Read forwards from the all stream.
6
+ /// Read forwards from the all stream.
7
7
let allForwards ( store : SqlStreamStore.IStreamStore )
8
8
( startPositionInclusive : StartPosition )
9
9
( msgCount : int )
@@ -37,20 +37,20 @@ module Read =
37
37
ReadRaw.streamBackwards store streamName readVersion msgCount
38
38
|> ExceptionsHandler.asyncExceptionHandler
39
39
40
- /// Read forwards from the all stream, prefetching the messages' jsonData.
40
+ /// Read forwards from the all stream, prefetching the messages' jsonData.
41
41
let allForwardsPrefetch ( store : SqlStreamStore.IStreamStore )
42
42
( startPositionInclusive : StartPosition )
43
43
( msgCount : int )
44
44
: Async < Result < ReadAllPage , exn >> =
45
- ReadRaw.allForwardsPrefetch store startPositionInclusive msgCount true
45
+ ReadRaw.allForwardsPrefetch store startPositionInclusive msgCount
46
46
|> ExceptionsHandler.asyncExceptionHandler
47
47
48
- /// Read backwards from the all stream, prefetching the messages' jsonData.
48
+ /// Read backwards from the all stream, prefetching the messages' jsonData.
49
49
let allBackwardsPrefetch ( store : SqlStreamStore.IStreamStore )
50
50
( startPositionInclusive : StartPosition )
51
51
( msgCount : int )
52
52
: Async < Result < ReadAllPage , exn >> =
53
- ReadRaw.allBackwardsPrefetch store startPositionInclusive msgCount true
53
+ ReadRaw.allBackwardsPrefetch store startPositionInclusive msgCount
54
54
|> ExceptionsHandler.asyncExceptionHandler
55
55
56
56
/// Read forwards from a specific stream, prefetching the messages' jsonData.
@@ -59,7 +59,7 @@ module Read =
59
59
( readVersion : ReadVersion )
60
60
( msgCount : int )
61
61
: Async < Result < ReadStreamPage , exn >> =
62
- ReadRaw.streamForwardsPrefetch store streamName readVersion msgCount true
62
+ ReadRaw.streamForwardsPrefetch store streamName readVersion msgCount
63
63
|> ExceptionsHandler.asyncExceptionHandler
64
64
65
65
/// Read backwards from a specific stream, prefetching the messages' jsonData.
@@ -68,5 +68,5 @@ module Read =
68
68
( readVersion : ReadVersion )
69
69
( msgCount : int )
70
70
: Async < Result < ReadStreamPage , exn >> =
71
- ReadRaw.streamBackwardsPrefetch store streamName readVersion msgCount true
71
+ ReadRaw.streamBackwardsPrefetch store streamName readVersion msgCount
72
72
|> ExceptionsHandler.asyncExceptionHandler
0 commit comments