nim-libp2p-experimental/libp2p/stream.nim

52 lines
1.2 KiB
Nim
Raw Normal View History

2019-08-27 21:45:21 +00:00
## 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 LPStream* = ref object of RootObj
closed*: bool
method read*(s: LPStream, n = -1): Future[seq[byte]]
{.base, async.} =
discard
method readExactly*(s: LPStream, pbytes: pointer, nbytes: int): Future[void]
{.base, async.} =
discard
method readLine*(s: LPStream, limit = 0, sep = "\r\n"): Future[string]
{.base, async.} =
discard
method readOnce*(s: LPStream, pbytes: pointer, nbytes: int): Future[int]
{.base, async.} =
discard
method readUntil*(s: LPStream,
pbytes: pointer, nbytes: int,
sep: seq[byte]): Future[int]
{.base, async.} =
discard
method write*(s: LPStream, pbytes: pointer, nbytes: int)
{.base, async.} =
discard
method write*(s: LPStream, msg: string, msglen = -1)
{.base, async.} =
discard
method write*(s: LPStream, msg: seq[byte], msglen = -1)
{.base, async.} =
discard
method close*(s: LPStream)
{.base, async.} =
discard