This is an automated email from the git hooks/post-receive script.

ebourg-guest pushed a change to branch master
in repository disruptor.

      from  1e41b6b   New upstream release (3.2.1)
      adds  f5339d4   Imported Upstream version 3.3.0
       new  20866ea   Merge tag 'upstream/3.3.0'
       new  a31a490   New upstream release (3.3.0)

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


Summary of changes:
 README.md                                          |  46 +-
 build.gradle                                       |  17 +-
 debian/changelog                                   |   7 +
 debian/pom.xml                                     |   2 +-
 gradle/wrapper/gradle-wrapper.properties           |   4 +-
 gradlew                                            |   4 +-
 .../java/com/lmax/disruptor/AbstractSequencer.java |  14 +
 .../com/lmax/disruptor/BatchEventProcessor.java    |   4 +-
 src/main/java/com/lmax/disruptor/EventPoller.java  | 101 +++++
 .../java/com/lmax/disruptor/EventSequencer.java    |   6 +
 src/main/java/com/lmax/disruptor/EventSink.java    | 366 ++++++++++++++++
 ...Strategy.java => LiteBlockingWaitStrategy.java} |  39 +-
 .../com/lmax/disruptor/MultiProducerSequencer.java |   7 +-
 .../lmax/disruptor/PhasedBackoffWaitStrategy.java  |  11 +
 src/main/java/com/lmax/disruptor/RingBuffer.java   | 465 ++++++++-------------
 src/main/java/com/lmax/disruptor/Sequence.java     |  44 +-
 .../disruptor/{Sequencer.java => Sequenced.java}   |  88 +---
 src/main/java/com/lmax/disruptor/Sequencer.java    |  99 +----
 .../lmax/disruptor/SingleProducerSequencer.java    |  58 ++-
 .../java/com/lmax/disruptor/WorkProcessor.java     |   4 +-
 src/main/java/com/lmax/disruptor/WorkerPool.java   |   4 +-
 .../com/lmax/disruptor/dsl/ConsumerRepository.java |   3 +-
 .../java/com/lmax/disruptor/dsl/Disruptor.java     |  56 ++-
 .../com/lmax/disruptor/dsl/EventHandlerGroup.java  |  48 ++-
 .../lmax/disruptor/dsl/EventProcessorFactory.java  |  23 +
 .../com/lmax/disruptor/dsl/EventProcessorInfo.java |   6 +-
 .../disruptor/queue/PingPongQueueLatencyTest.java  |  40 +-
 .../raw/OneToOneRawBatchThroughputTest.java        |   3 +-
 .../disruptor/raw/OneToOneRawThroughputTest.java   |   3 +-
 .../OneToOneSequencedBatchThroughputTest.java      |   4 +-
 ... => OneToOneSequencedPollerThroughputTest.java} |  94 ++++-
 .../sequenced/PingPongSequencedLatencyTest.java    |  36 +-
 .../support/ValueAdditionEventHandler.java         |  14 +-
 src/test/java/com/lmax/disruptor/BatchingTest.java | 117 ++++++
 .../java/com/lmax/disruptor/EventPollerTest.java   | 120 ++++++
 .../java/com/lmax/disruptor/SequencerTest.java     |   4 +-
 .../java/com/lmax/disruptor/dsl/DisruptorTest.java | 104 ++++-
 .../lmax/disruptor/dsl/stubs/EventHandlerStub.java |   5 +-
 .../lmax/disruptor/example/NamedEventHandler.java  |  34 ++
 .../com/lmax/disruptor/example/TwoDisruptors.java  | 100 +++++
 40 files changed, 1558 insertions(+), 646 deletions(-)
 create mode 100644 src/main/java/com/lmax/disruptor/EventPoller.java
 create mode 100644 src/main/java/com/lmax/disruptor/EventSequencer.java
 create mode 100644 src/main/java/com/lmax/disruptor/EventSink.java
 copy src/main/java/com/lmax/disruptor/{BlockingWaitStrategy.java => 
LiteBlockingWaitStrategy.java} (64%)
 copy src/main/java/com/lmax/disruptor/{Sequencer.java => Sequenced.java} (50%)
 create mode 100644 
src/main/java/com/lmax/disruptor/dsl/EventProcessorFactory.java
 copy 
src/perftest/java/com/lmax/disruptor/sequenced/{OneToOneSequencedThroughputTest.java
 => OneToOneSequencedPollerThroughputTest.java} (59%)
 create mode 100644 src/test/java/com/lmax/disruptor/BatchingTest.java
 create mode 100644 src/test/java/com/lmax/disruptor/EventPollerTest.java
 create mode 100644 
src/test/java/com/lmax/disruptor/example/NamedEventHandler.java
 create mode 100644 src/test/java/com/lmax/disruptor/example/TwoDisruptors.java

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/disruptor.git

_______________________________________________
pkg-java-commits mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

Reply via email to