Skip to content

Commit

Permalink
Upgrade streamly-core to version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
harendra-kumar committed Dec 6, 2023
1 parent bea1b65 commit 254018a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
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

0 comments on commit 254018a

Please sign in to comment.