add

abstract fun add(item: T)

Add an item to the underlying Channel without blocking.

This method is equivalent to:

if (!asChannel().trySend(item).isSuccess) error()