Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Property: bool HasMore

  • Declared in: RT.KitchenSink.Channel<T>

Declaration

bool HasMore

Summary

Determines whether the channel contains more items.

Remarks

Blocks until the determination can be made.

In most cases, this method is only useful if there is only one reading thread. If there are multiple, then even after this method returns true, another thread can consume the item before this thread can get to it. Only if this method returns false can there be no such race condition.