[disruptor] branch master updated (0e0f436 -> 5ce63a7)
Tony Mancill
tmancill at moszumanska.debian.org
Sun Oct 15 19:37:34 UTC 2017
This is an automated email from the git hooks/post-receive script.
tmancill pushed a change to branch master
in repository disruptor.
from 0e0f436 prepare changelog for upload
new 12cf2d5 use Files-Excluded in d/copyright for repacking upstream tarball
new c0355a7 update pom from upstream with debian/rules get-orig-pom
new 9d2b97a interim changelog
adds cf2f391 New upstream version 3.3.6
adds b3bc413 New upstream version 3.3.7
new 7d98794 Updated version 3.3.7 from 'upstream/3.3.7'
new bb4982a bump Standards-Version to 4.1.1
new ba0dd1b use DH 10
new 5ce63a7 prepare changelog for upload
The 7 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 | 9 +
build.gradle | 16 +-
build.sh | 112 ++++++++++++
config/checkstyle/checkstyle.xml | 2 -
debian/changelog | 10 +
debian/compat | 2 +-
debian/control | 4 +-
debian/copyright | 5 +-
debian/orig-tar.sh | 21 ---
debian/pom.xml | 16 +-
debian/rules | 2 +-
debian/watch | 9 +-
gradle/wrapper/gradle-wrapper.properties | 6 -
gradlew | 160 ----------------
.../java/com/lmax/disruptor/AbstractSequencer.java | 2 +-
.../com/lmax/disruptor/BatchEventProcessor.java | 10 +-
.../java/com/lmax/disruptor/BatchStartAware.java | 6 +
src/main/java/com/lmax/disruptor/EventSink.java | 56 +++++-
.../java/com/lmax/disruptor/EventTranslator.java | 4 +-
.../com/lmax/disruptor/EventTranslatorOneArg.java | 2 +-
.../lmax/disruptor/EventTranslatorThreeArg.java | 2 +-
.../com/lmax/disruptor/EventTranslatorTwoArg.java | 2 +-
.../com/lmax/disruptor/EventTranslatorVararg.java | 2 +-
.../java/com/lmax/disruptor/ExceptionHandler.java | 2 +-
src/main/java/com/lmax/disruptor/Foo.java | 36 ++++
.../disruptor/InsufficientCapacityException.java | 6 +-
.../com/lmax/disruptor/MultiProducerSequencer.java | 6 +-
.../lmax/disruptor/PhasedBackoffWaitStrategy.java | 23 ++-
.../lmax/disruptor/ProcessingSequenceBarrier.java | 2 +-
src/main/java/com/lmax/disruptor/RingBuffer.java | 31 +++-
.../java/com/lmax/disruptor/SequenceBarrier.java | 2 +-
.../disruptor/SequenceReportingEventHandler.java | 2 +-
src/main/java/com/lmax/disruptor/Sequenced.java | 8 +-
src/main/java/com/lmax/disruptor/Sequencer.java | 4 +-
.../lmax/disruptor/SingleProducerSequencer.java | 30 +--
src/main/java/com/lmax/disruptor/WaitStrategy.java | 2 +-
.../java/com/lmax/disruptor/WorkProcessor.java | 2 +-
.../com/lmax/disruptor/collections/Histogram.java | 13 +-
.../java/com/lmax/disruptor/dsl/Disruptor.java | 86 ++++++---
.../com/lmax/disruptor/dsl/EventHandlerGroup.java | 38 ++--
.../lmax/disruptor/dsl/EventProcessorFactory.java | 1 +
.../com/lmax/disruptor/dsl/EventProcessorInfo.java | 2 +-
.../com/lmax/disruptor/dsl/WorkerPoolInfo.java | 4 +-
src/main/java/com/lmax/disruptor/util/Util.java | 3 +-
.../disruptor/queue/PingPongQueueLatencyTest.java | 4 +-
.../raw/OneToOneRawBatchThroughputTest.java | 2 +-
.../disruptor/raw/OneToOneRawThroughputTest.java | 2 +-
.../OneToOneSequencedPollerThroughputTest.java | 2 +-
.../sequenced/PingPongSequencedLatencyTest.java | 4 +-
.../ThreeToOneSequencedBatchThroughputTest.java | 4 +-
.../java/com/lmax/disruptor/support/Operation.java | 2 +-
.../lmax/disruptor/AggregateEventHandlerTest.java | 96 +++-------
.../lmax/disruptor/BatchEventProcessorTest.java | 201 ++++++++++++---------
src/test/java/com/lmax/disruptor/BatchingTest.java | 2 +-
.../lmax/disruptor/BusySpinWaitStrategyTest.java | 2 +-
.../com/lmax/disruptor/DisruptorStressTest.java | 4 +-
.../java/com/lmax/disruptor/EventPollerTest.java | 108 ++++-------
.../lmax/disruptor/FatalExceptionHandlerTest.java | 28 +--
.../lmax/disruptor/IgnoreExceptionHandlerTest.java | 28 +--
.../LiteTimeoutBlockingWaitStrategyTest.java | 26 +--
.../disruptor/PhasedBackoffWaitStrategyTest.java | 2 +-
.../java/com/lmax/disruptor/RingBufferTest.java | 8 +-
.../disruptor/RingBufferWithAssertingStubTest.java | 176 ++++++++++++++++++
.../lmax/disruptor/RingBufferWithMocksTest.java | 118 ------------
.../com/lmax/disruptor/SequenceBarrierTest.java | 97 +---------
.../java/com/lmax/disruptor/SequencerTest.java | 45 ++---
.../disruptor/ShutdownOnFatalExceptionTest.java | 2 +-
.../disruptor/SingleProducerSequencerTest.java | 26 +++
.../lmax/disruptor/SleepingWaitStrategyTest.java | 2 +-
.../disruptor/TimeoutBlockingWaitStrategyTest.java | 26 +--
.../java/com/lmax/disruptor/WorkerStressTest.java | 2 +-
.../lmax/disruptor/YieldingWaitStrategyTest.java | 2 +-
.../lmax/disruptor/collections/HistogramTest.java | 52 ++++++
.../lmax/disruptor/dsl/ConsumerRepositoryTest.java | 34 +---
.../java/com/lmax/disruptor/dsl/DisruptorTest.java | 2 +-
.../java/com/lmax/disruptor/example/Pipeliner.java | 100 ++++++++++
.../disruptor/example/PullWithBatchedPoller.java | 2 +-
.../lmax/disruptor/example/WaitForShutdown.java | 2 +-
.../java/com/lmax/disruptor/support/Actions.java | 37 ----
.../lmax/disruptor/support/DummyEventHandler.java | 31 ++++
.../disruptor/support/DummyEventProcessor.java | 55 ++++++
.../{ => support}/DummySequenceBarrier.java | 7 +-
.../lmax/disruptor/support/DummyWaitStrategy.java | 22 +++
.../disruptor/{ => support}/SequenceUpdater.java | 7 +-
.../{ => support}/WaitStrategyTestUtil.java | 13 +-
.../java/com/lmax/disruptor/util/UtilTest.java | 44 +----
86 files changed, 1157 insertions(+), 1035 deletions(-)
create mode 100755 build.sh
delete mode 100755 debian/orig-tar.sh
delete mode 100644 gradle/wrapper/gradle-wrapper.properties
delete mode 100755 gradlew
create mode 100644 src/main/java/com/lmax/disruptor/BatchStartAware.java
create mode 100644 src/main/java/com/lmax/disruptor/Foo.java
create mode 100644 src/test/java/com/lmax/disruptor/RingBufferWithAssertingStubTest.java
delete mode 100644 src/test/java/com/lmax/disruptor/RingBufferWithMocksTest.java
create mode 100644 src/test/java/com/lmax/disruptor/SingleProducerSequencerTest.java
create mode 100644 src/test/java/com/lmax/disruptor/example/Pipeliner.java
delete mode 100644 src/test/java/com/lmax/disruptor/support/Actions.java
create mode 100644 src/test/java/com/lmax/disruptor/support/DummyEventHandler.java
create mode 100644 src/test/java/com/lmax/disruptor/support/DummyEventProcessor.java
rename src/test/java/com/lmax/disruptor/{ => support}/DummySequenceBarrier.java (85%)
create mode 100644 src/test/java/com/lmax/disruptor/support/DummyWaitStrategy.java
rename src/test/java/com/lmax/disruptor/{ => support}/SequenceUpdater.java (89%)
rename src/test/java/com/lmax/disruptor/{ => support}/WaitStrategyTestUtil.java (82%)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/disruptor.git
More information about the pkg-java-commits
mailing list