diff options
Diffstat (limited to 'TODO.org')
-rw-r--r-- | TODO.org | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/TODO.org b/TODO.org new file mode 100644 index 00000000..dbba5c8c --- /dev/null +++ b/TODO.org | |||
@@ -0,0 +1,17 @@ | |||
1 | * configure travis | ||
2 | * liftKRPC :: | ||
3 | * add withRetries | ||
4 | * bump version to 0.7.0.0 | ||
5 | |||
6 | * add issue: getQueryCount --> getRpcStats | ||
7 | data Stats = Stats | ||
8 | { queryFailed :: {-# UNPACK #-} !Int | ||
9 | , querySucceed :: {-# UNPACK #-} !Int | ||
10 | , handlerFailed :: {-# UNPACK #-} !Int | ||
11 | , handlerSucceed :: {-# UNPACK #-} !Int | ||
12 | , sentBytes :: {-# UNPACK #-} !Int | ||
13 | , receivedBytes :: {-# UNPACK #-} !Int | ||
14 | } | ||
15 | |||
16 | * add asyncQuery :: SockAddr -> a -> m (Async a) | ||
17 | * add queries :: [(SockAddr, a)] -> m [Either a] \ No newline at end of file | ||