StdinResult

mill.launcher.DaemonRpc.StdinResult
case class StdinResult(bytes: Array[Byte], eof: Boolean = ...)

Result of polling for stdin data. bytes carries any bytes available right now (possibly empty when nothing's queued); eof = true means the client's stdin has been closed and no more bytes will ever arrive — the daemon-side stdin proxy must translate this to read() == -1 so consumers like lsp4j see a clean end-of-stream rather than spinning forever.

Attributes

Source
DaemonRpc.scala
Graph
Supertypes
trait Serializable
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def productElementNames: Iterator[String]

An iterator over the names of all the elements of this product.

An iterator over the names of all the elements of this product.

Attributes

Inherited from:
Product
Source
Product.scala
def productIterator: Iterator[Any]

An iterator over all the elements of this product.

An iterator over all the elements of this product.

Attributes

Returns

in the default implementation, an Iterator[Any]

Inherited from:
Product
Source
Product.scala