blob: ef304d1aef808da77a2dcfc83ff21f5959d957fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{- git-annex meter types
-
- Copyright 2012 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Types.Meters where
{- An action that can be run repeatedly, feeding it the number of
- bytes sent or retrieved so far. -}
type MeterUpdate = (Integer -> IO ())
|