You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by lc...@apache.org on 2021/10/18 23:27:06 UTC

[beam] branch master updated (abe3aa7 -> 70ac565)

This is an automated email from the ASF dual-hosted git repository.

lcwik pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git.


    from abe3aa7  Merge pull request #15603 from zhoufek/fat
     add d0253ed  [BEAM-13015] Implement a simplified cancellable blocking queue with similar semantics to ArrayBlockingQueue.
     new 70ac565  [BEAM-13015] Implement a simplified cancellable blocking queue with similar semantics to ArrayBlockingQueue.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../org/apache/beam/sdk/fn/CancellableQueue.java   | 145 ++++++++++++++
 .../apache/beam/sdk/fn/CancellableQueueTest.java   | 213 +++++++++++++++++++++
 2 files changed, 358 insertions(+)
 create mode 100644 sdks/java/fn-execution/src/main/java/org/apache/beam/sdk/fn/CancellableQueue.java
 create mode 100644 sdks/java/fn-execution/src/test/java/org/apache/beam/sdk/fn/CancellableQueueTest.java

[beam] 01/01: [BEAM-13015] Implement a simplified cancellable blocking queue with similar semantics to ArrayBlockingQueue.

Posted by lc...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lcwik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git

commit 70ac565ea71f247fbe545489a5916ed058f4ddac
Merge: abe3aa7 d0253ed
Author: Lukasz Cwik <lu...@gmail.com>
AuthorDate: Mon Oct 18 16:26:01 2021 -0700

    [BEAM-13015] Implement a simplified cancellable blocking queue with similar semantics to ArrayBlockingQueue.

 .../org/apache/beam/sdk/fn/CancellableQueue.java   | 145 ++++++++++++++
 .../apache/beam/sdk/fn/CancellableQueueTest.java   | 213 +++++++++++++++++++++
 2 files changed, 358 insertions(+)