Guest User

Untitled

a guest
Aug 17th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public class ValueDisruptor<T>
  2. where T : struct
  3. {
  4. //...
  5.  
  6. public ValueEventHandlerGroup<T> HandleEventsWith(params IValueEventHandler<T>[] handlers)
  7. {
  8. // ...
  9. }
  10.  
  11. public ValueRingBuffer<T> RingBuffer => _ringBuffer;
  12.  
  13. public ref T this[long sequence] => ref _ringBuffer[sequence];
  14.  
  15. //...
  16. }
Add Comment
Please, Sign In to add comment