channel.pony

1
2
3
4
5
6
use "logger"

interface Channel
  fun ref write(data: (String val | Array[U8] val))
  fun ref flush()
  fun ref close()