From 261204853ea6e9a894b206129cf622c5da93e7c3 Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Tue, 27 Aug 2019 20:31:53 -0600 Subject: [PATCH] rename readwrite to stream --- libp2p/readerwriter.nim | 51 ----------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 libp2p/readerwriter.nim diff --git a/libp2p/readerwriter.nim b/libp2p/readerwriter.nim deleted file mode 100644 index df73b14..0000000 --- a/libp2p/readerwriter.nim +++ /dev/null @@ -1,51 +0,0 @@ -## Nim-LibP2P -## Copyright (c) 2018 Status Research & Development GmbH -## Licensed under either of -## * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE)) -## * MIT license ([LICENSE-MIT](LICENSE-MIT)) -## at your option. -## This file may not be copied, modified, or distributed except according to -## those terms. - -import chronos - -type ReadWrite* = ref object of RootObj - closed*: bool - -method read*(s: ReadWrite, n = -1): Future[seq[byte]] - {.base, async.} = - discard - -method readExactly*(s: ReadWrite, pbytes: pointer, nbytes: int): Future[void] - {.base, async.} = - discard - -method readLine*(s: ReadWrite, limit = 0, sep = "\r\n"): Future[string] - {.base, async.} = - discard - -method readOnce*(s: ReadWrite, pbytes: pointer, nbytes: int): Future[int] - {.base, async.} = - discard - -method readUntil*(s: ReadWrite, - pbytes: pointer, nbytes: int, - sep: seq[byte]): Future[int] - {.base, async.} = - discard - -method write*(s: ReadWrite, pbytes: pointer, nbytes: int) - {.base, async.} = - discard - -method write*(s: ReadWrite, msg: string, msglen = -1) - {.base, async.} = - discard - -method write*(s: ReadWrite, msg: seq[byte], msglen = -1) - {.base, async.} = - discard - -method close*(s: ReadWrite) - {.base, async.} = - discard