public class SortedPointBuffer<TKey, TValue> : TreeStream<TKey, TValue>
where TKey : new(), SnapTypeBase<TKey>
where TValue : new(), SnapTypeBase<TValue>
Public Class SortedPointBuffer(Of TKey As {New, SnapTypeBase(Of TKey)}, TValue As {New, SnapTypeBase(Of TValue)})
Inherits TreeStream(Of TKey, TValue)generic<typename TKey, typename TValue>
where TKey : gcnew(), SnapTypeBase<TKey>
where TValue : gcnew(), SnapTypeBase<TValue>
public ref class SortedPointBuffer : public TreeStream<TKey, TValue>| SortedPointBufferTKey, TValue(Int32, ActionTKey, TKey) | Creates a SortedPointBufferTKey, TValue that can hold only exactly the specified capacity using the specified duplicate handler. |
| SortedPointBufferTKey, TValue(Int32, Boolean) | Creates a SortedPointBufferTKey, TValue that can hold only exactly the specified capacity. |
| Count | Gets the current number of items in the buffer |
| Eos |
Boolean indicating that the end of the stream has been read or class has been disposed.
(Inherited from TreeStreamTKey, TValue) |
| IsAlwaysSequential |
Gets if the stream is always in sequential order. Do not return true unless it is guaranteed that
the data read from this stream is sequential.
(Overrides TreeStreamTKey, TValueIsAlwaysSequential) |
| IsEmpty | Gets if this buffer is empty |
| IsFull | Gets if no more items can be added to this list. List must be cleared before any more items can be added. |
| IsReadingMode | Gets or sets the current mode of the point buffer. |
| NeverContainsDuplicates |
Gets if the stream will never return duplicate keys. Do not return true unless it is guaranteed that
the data read from this stream will never contain duplicates.
(Overrides TreeStreamTKey, TValueNeverContainsDuplicates) |
| Dispose |
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from TreeStreamTKey, TValue) |
| Dispose(Boolean) |
Releases the unmanaged resources used by the TreeStreamTKey, TValue object and optionally releases the managed resources.
(Inherited from TreeStreamTKey, TValue) |
| EndOfStreamReached |
Overrides the default behavior that disposes the stream when the end of the stream has been encountered.
(Overrides TreeStreamTKey, TValueEndOfStreamReached) |
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) |
| GetHashCode | Serves as the default hash function. (Inherited from Object) |
| GetType | Gets the Type of the current instance. (Inherited from Object) |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) |
| Read |
Advances the stream to the next value.
If before the beginning of the stream, advances to the first value
(Inherited from TreeStreamTKey, TValue) |
| ReadAsync |
Advances the stream to the next value.
If before the beginning of the stream, advances to the first value
(Inherited from TreeStreamTKey, TValue) |
| ReadNext |
Advances the stream to the next value.
(Overrides TreeStreamTKey, TValueReadNext(TKey, TValue)) |
| SetEos |
Sets the end-of-stream (EOS) flag, indicating whether the stream has reached its end.
(Inherited from TreeStreamTKey, TValue) |
| ToString | Returns a string that represents the current object. (Inherited from Object) |
| TryEnqueue | Attempts to enqueue the provided item to the list. |