summaryrefslogtreecommitdiff
path: root/thread_sync.rb
diff options
context:
space:
mode:
Diffstat (limited to 'thread_sync.rb')
-rw-r--r--thread_sync.rb68
1 files changed, 68 insertions, 0 deletions
diff --git a/thread_sync.rb b/thread_sync.rb
new file mode 100644
index 0000000000..f8fa69900b
--- /dev/null
+++ b/thread_sync.rb
@@ -0,0 +1,68 @@
+class Thread
+ class Queue
+ # call-seq:
+ # pop(non_block=false, timeout: nil)
+ #
+ # Retrieves data from the queue.
+ #
+ # If the queue is empty, the calling thread is suspended until data is pushed
+ # onto the queue. If +non_block+ is true, the thread isn't suspended, and
+ # +ThreadError+ is raised.
+ #
+ # If +timeout+ seconds have passed and no data is available +nil+ is
+ # returned. If +timeout+ is +0+ it returns immediately.
+ def pop(non_block = false, timeout: nil)
+ if non_block && timeout
+ raise ArgumentError, "can't set a timeout if non_block is enabled"
+ end
+ Primitive.rb_queue_pop(non_block, timeout)
+ end
+ alias_method :deq, :pop
+ alias_method :shift, :pop
+ end
+
+ class SizedQueue
+ # call-seq:
+ # pop(non_block=false, timeout: nil)
+ #
+ # Retrieves data from the queue.
+ #
+ # If the queue is empty, the calling thread is suspended until data is
+ # pushed onto the queue. If +non_block+ is true, the thread isn't
+ # suspended, and +ThreadError+ is raised.
+ #
+ # If +timeout+ seconds have passed and no data is available +nil+ is
+ # returned. If +timeout+ is +0+ it returns immediately.
+ def pop(non_block = false, timeout: nil)
+ if non_block && timeout
+ raise ArgumentError, "can't set a timeout if non_block is enabled"
+ end
+ Primitive.rb_szqueue_pop(non_block, timeout)
+ end
+ alias_method :deq, :pop
+ alias_method :shift, :pop
+
+ # call-seq:
+ # push(object, non_block=false, timeout: nil)
+ # enq(object, non_block=false, timeout: nil)
+ # <<(object)
+ #
+ # Pushes +object+ to the queue.
+ #
+ # If there is no space left in the queue, waits until space becomes
+ # available, unless +non_block+ is true. If +non_block+ is true, the
+ # thread isn't suspended, and +ThreadError+ is raised.
+ #
+ # If +timeout+ seconds have passed and no space is available +nil+ is
+ # returned. If +timeout+ is +0+ it returns immediately.
+ # Otherwise it returns +self+.
+ def push(object, non_block = false, timeout: nil)
+ if non_block && timeout
+ raise ArgumentError, "can't set a timeout if non_block is enabled"
+ end
+ Primitive.rb_szqueue_push(object, non_block, timeout)
+ end
+ alias_method :enq, :push
+ alias_method :<<, :push
+ end
+end