[disruptor] 04/07: Updated version 3.3.7 from 'upstream/3.3.7'
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 commit to branch master
in repository disruptor.
commit 7d98794974f4fb160c994a6e4fc30d6cb1aeb7d4
Merge: 9d2b97a b3bc413
Author: tony mancill <tmancill at debian.org>
Date: Sun Oct 15 12:26:07 2017 -0700
Updated version 3.3.7 from 'upstream/3.3.7'
with Debian dir 6f5475e82b25a151067068a9fd84dc9bb2fdc3cb
README.md | 9 +
build.gradle | 16 +-
build.sh | 112 ++++++++++++
config/checkstyle/checkstyle.xml | 2 -
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 +----
78 files changed, 1132 insertions(+), 991 deletions(-)
--
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