Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade streamly-core to version 0.2.0 #17

Merged
merged 1 commit into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Aggregator.hs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ newtype Window = Window (Set Word32) -- thread ids that have joined the window

{-# INLINE translateThreadEvents #-}
translateThreadEvents :: Fold IO Event [Event]
translateThreadEvents = Fold step initial extract
translateThreadEvents = Fold step initial extract extract

where

Expand Down Expand Up @@ -204,7 +204,7 @@ data CollectState =
collectThreadCounter ::
Fold IO ((Word32, String, Counter), (Location, Int64))
(Maybe (Either (Maybe Int64) Int64))
collectThreadCounter = Fold step initial extract
collectThreadCounter = Fold step initial extract extract

where

Expand Down
3 changes: 2 additions & 1 deletion src/EventParser.hs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ import Streamly.Data.Parser (Parser)
import Streamly.Data.ParserK (ParserK)
import Streamly.Data.Stream (Stream)
import Streamly.Data.StreamK (StreamK)
import Streamly.Internal.Serialize.FromBytes (int16be, word16be, word32be, word64be)
import Streamly.Internal.Data.Binary.Parser
(int16be, word16be, word32be, word64be)

import qualified Data.IntMap as Map
import qualified Streamly.Data.Array as Array
Expand Down
Loading