none<T> static method

Buffer<T> none<T>()

No buffering, new messages will be lost if there are no pending takers.

Implementation

static Buffer<T> none<T>() {
  return _ZeroBuffer<T>();
}