summaryrefslogtreecommitdiff
path: root/dht/TODO.org
blob: dbba5c8c50ad2ed4163a018860bc6e7514799384 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
* configure travis
* liftKRPC ::
* add withRetries
* bump version to 0.7.0.0

* add issue: getQueryCount --> getRpcStats
data Stats = Stats
  { queryFailed    :: {-# UNPACK #-} !Int
  , querySucceed   :: {-# UNPACK #-} !Int
  , handlerFailed  :: {-# UNPACK #-} !Int
  , handlerSucceed :: {-# UNPACK #-} !Int
  , sentBytes      :: {-# UNPACK #-} !Int
  , receivedBytes  :: {-# UNPACK #-} !Int
  }

* add asyncQuery :: SockAddr -> a -> m (Async a)
* add queries :: [(SockAddr, a)] -> m [Either  a]