ListSink

class ListSink(target: MutableList<Any> = mutableListOf()) : ArtifactSink

Sink that collects artifacts into a mutable list.

Constructors

Link copied to clipboard
constructor(target: MutableList<Any> = mutableListOf())

Functions

Link copied to clipboard
open override fun accept(artifact: Any)
Link copied to clipboard
fun items(): List<Any>