[disruptor] branch master updated (226b09a -> 05628af)
Emmanuel Bourg
ebourg-guest at moszumanska.debian.org
Wed Jan 22 22:59:01 UTC 2014
This is an automated email from the git hooks/post-receive script.
ebourg-guest pushed a change to branch master
in repository disruptor.
from 226b09a Initial packaging
adds 27de0c0 Initial upstream branch.
adds a902fb4 Imported Upstream version 3.2.0
new 05628af Merge tag 'upstream/3.2.0'
The 1 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:
.gitignore | 16 +
LICENCE.txt | 201 +++
README.md | 223 ++++
build.gradle | 198 +++
config/checkstyle/checkstyle.xml | 138 ++
docs/Disruptor.docx | Bin 0 -> 78689 bytes
gradle/wrapper/gradle-wrapper.properties | 6 +
gradlew | 164 +++
settings.gradle | 1 +
.../java/com/lmax/disruptor/AbstractSequencer.java | 111 ++
.../com/lmax/disruptor/AggregateEventHandler.java | 71 +
.../java/com/lmax/disruptor/AlertException.java | 46 +
.../com/lmax/disruptor/BatchEventProcessor.java | 215 +++
.../com/lmax/disruptor/BlockingWaitStrategy.java | 75 ++
.../com/lmax/disruptor/BusySpinWaitStrategy.java | 45 +
src/main/java/com/lmax/disruptor/Cursored.java | 32 +
src/main/java/com/lmax/disruptor/DataProvider.java | 21 +
src/main/java/com/lmax/disruptor/EventFactory.java | 29 +
src/main/java/com/lmax/disruptor/EventHandler.java | 36 +
.../java/com/lmax/disruptor/EventProcessor.java | 39 +
.../java/com/lmax/disruptor/EventReleaseAware.java | 21 +
.../java/com/lmax/disruptor/EventReleaser.java | 21 +
.../java/com/lmax/disruptor/EventTranslator.java | 36 +
.../com/lmax/disruptor/EventTranslatorOneArg.java | 34 +
.../lmax/disruptor/EventTranslatorThreeArg.java | 36 +
.../com/lmax/disruptor/EventTranslatorTwoArg.java | 35 +
.../com/lmax/disruptor/EventTranslatorVararg.java | 34 +
.../java/com/lmax/disruptor/ExceptionHandler.java | 48 +
.../com/lmax/disruptor/FatalExceptionHandler.java | 59 +
.../com/lmax/disruptor/FixedSequenceGroup.java | 91 ++
.../com/lmax/disruptor/IgnoreExceptionHandler.java | 57 +
.../disruptor/InsufficientCapacityException.java | 42 +
.../java/com/lmax/disruptor/LifecycleAware.java | 36 +
.../com/lmax/disruptor/MultiProducerSequencer.java | 296 +++++
.../com/lmax/disruptor/NoOpEventProcessor.java | 86 ++
.../lmax/disruptor/PhasedBackoffWaitStrategy.java | 201 +++
.../lmax/disruptor/ProcessingSequenceBarrier.java | 98 ++
src/main/java/com/lmax/disruptor/RingBuffer.java | 1183 +++++++++++++++++
src/main/java/com/lmax/disruptor/Sequence.java | 146 +++
.../java/com/lmax/disruptor/SequenceBarrier.java | 66 +
.../java/com/lmax/disruptor/SequenceGroup.java | 125 ++
.../java/com/lmax/disruptor/SequenceGroups.java | 106 ++
.../disruptor/SequenceReportingEventHandler.java | 37 +
src/main/java/com/lmax/disruptor/Sequencer.java | 159 +++
.../lmax/disruptor/SingleProducerSequencer.java | 201 +++
.../com/lmax/disruptor/SleepingWaitStrategy.java | 71 +
.../disruptor/TimeoutBlockingWaitStrategy.java | 72 +
.../java/com/lmax/disruptor/TimeoutException.java | 18 +
.../java/com/lmax/disruptor/TimeoutHandler.java | 6 +
src/main/java/com/lmax/disruptor/WaitStrategy.java | 48 +
src/main/java/com/lmax/disruptor/WorkHandler.java | 33 +
.../java/com/lmax/disruptor/WorkProcessor.java | 195 +++
src/main/java/com/lmax/disruptor/WorkerPool.java | 176 +++
.../com/lmax/disruptor/YieldingWaitStrategy.java | 65 +
.../com/lmax/disruptor/collections/Histogram.java | 391 ++++++
.../java/com/lmax/disruptor/dsl/ConsumerInfo.java | 23 +
.../com/lmax/disruptor/dsl/ConsumerRepository.java | 119 ++
.../java/com/lmax/disruptor/dsl/Disruptor.java | 449 +++++++
.../com/lmax/disruptor/dsl/EventHandlerGroup.java | 161 +++
.../com/lmax/disruptor/dsl/EventProcessorInfo.java | 100 ++
.../disruptor/dsl/ExceptionHandlerSetting.java | 51 +
.../java/com/lmax/disruptor/dsl/ProducerType.java | 28 +
.../com/lmax/disruptor/dsl/WorkerPoolInfo.java | 60 +
src/main/java/com/lmax/disruptor/package.html | 174 +++
.../lmax/disruptor/util/DaemonThreadFactory.java | 34 +
.../java/com/lmax/disruptor/util/MutableLong.java | 61 +
.../java/com/lmax/disruptor/util/PaddedLong.java | 46 +
src/main/java/com/lmax/disruptor/util/Util.java | 162 +++
.../AbstractPerfTestQueueVsDisruptor.java | 84 ++
...ectVsEventTranslatorWithByteArrayBenchmark.java | 124 ++
...ctVsEventTranslatorWithSingleLongBenchmark.java | 106 ++
...lisherToOneProcessorRawBatchThroughputTest.java | 186 +++
...nePublisherToOneProcessorRawThroughputTest.java | 184 +++
...blisherToOneProcessorUniCastThroughputTest.java | 173 +++
...isherToThreeProcessorDiamondThroughputTest.java | 250 ++++
...herToThreeProcessorMultiCastThroughputTest.java | 231 ++++
...sherToThreeProcessorPipelineThroughputTest.java | 232 ++++
...erToThreeWorkerPoolThroughputReleasingTest.java | 179 +++
...nePublisherToThreeWorkerPoolThroughputTest.java | 168 +++
.../com/lmax/disruptor/PingPongLatencyTest.java | 458 +++++++
...isherToOneProcessorSequencedThroughputTest.java | 204 +++
...blisherToThreeProcessorPipelineLatencyTest.java | 298 +++++
...rToTwoProcessorWorkProcessorThroughputTest.java | 153 +++
.../lmax/disruptor/ValueAdditionWorkHandler.java | 35 +
.../EventCountingAndReleasingWorkHandler.java | 48 +
.../support/EventCountingQueueProcessor.java | 58 +
.../support/EventCountingWorkHandler.java | 38 +
.../com/lmax/disruptor/support/FizzBuzzEvent.java | 65 +
.../disruptor/support/FizzBuzzEventHandler.java | 79 ++
.../disruptor/support/FizzBuzzQueueProcessor.java | 117 ++
.../com/lmax/disruptor/support/FizzBuzzStep.java | 23 +
.../com/lmax/disruptor/support/FunctionEvent.java | 74 ++
.../disruptor/support/FunctionEventHandler.java | 73 ++
.../disruptor/support/FunctionQueueProcessor.java | 114 ++
.../com/lmax/disruptor/support/FunctionStep.java | 23 +
.../disruptor/support/LatencyStepEventHandler.java | 67 +
.../support/LatencyStepQueueProcessor.java | 104 ++
.../java/com/lmax/disruptor/support/Operation.java | 48 +
.../com/lmax/disruptor/support/PerfTestUtil.java | 30 +
.../support/ValueAdditionEventHandler.java | 61 +
.../support/ValueAdditionQueueProcessor.java | 79 ++
.../com/lmax/disruptor/support/ValueEvent.java | 41 +
.../support/ValueMutationEventHandler.java | 57 +
.../support/ValueMutationQueueProcessor.java | 81 ++
.../com/lmax/disruptor/support/ValuePublisher.java | 55 +
.../disruptor/support/ValueQueuePublisher.java | 50 +
.../lmax/disruptor/AggregateEventHandlerTest.java | 142 ++
.../lmax/disruptor/BatchEventProcessorTest.java | 158 +++
.../lmax/disruptor/BusySpinWaitStrategyTest.java | 30 +
.../com/lmax/disruptor/DummySequenceBarrier.java | 53 +
.../com/lmax/disruptor/EventPublisherTest.java | 66 +
.../com/lmax/disruptor/EventTranslatorTest.java | 53 +
.../lmax/disruptor/FatalExceptionHandlerTest.java | 66 +
.../com/lmax/disruptor/FixedSequenceGroupTest.java | 40 +
.../lmax/disruptor/IgnoreExceptionHandlerTest.java | 57 +
.../com/lmax/disruptor/LifecycleAwareTest.java | 77 ++
.../lmax/disruptor/MultiProducerSequencerTest.java | 41 +
.../disruptor/PhasedBackoffWaitStrategyTest.java | 52 +
.../java/com/lmax/disruptor/RingBufferTest.java | 1380 ++++++++++++++++++++
.../lmax/disruptor/RingBufferWithMocksTest.java | 113 ++
.../com/lmax/disruptor/SequenceBarrierTest.java | 290 ++++
.../java/com/lmax/disruptor/SequenceGroupTest.java | 147 +++
.../disruptor/SequenceReportingCallbackTest.java | 75 ++
.../java/com/lmax/disruptor/SequenceUpdater.java | 57 +
.../java/com/lmax/disruptor/SequencerTest.java | 296 +++++
.../disruptor/ShutdownOnFatalExceptionTest.java | 98 ++
.../lmax/disruptor/SleepingWaitStrategyTest.java | 29 +
.../disruptor/TimeoutBlockingWaitStrategyTest.java | 53 +
src/test/java/com/lmax/disruptor/TortureTest.java | 184 +++
.../com/lmax/disruptor/WaitStrategyTestUtil.java | 40 +
.../java/com/lmax/disruptor/WorkerPoolTest.java | 75 ++
.../lmax/disruptor/YieldingWaitStrategyTest.java | 30 +
.../lmax/disruptor/collections/HistogramTest.java | 216 +++
.../lmax/disruptor/dsl/ConsumerRepositoryTest.java | 147 +++
.../java/com/lmax/disruptor/dsl/DisruptorTest.java | 576 ++++++++
.../disruptor/dsl/stubs/DelayedEventHandler.java | 93 ++
.../lmax/disruptor/dsl/stubs/EventHandlerStub.java | 37 +
.../dsl/stubs/EvilEqualsEventHandler.java | 38 +
.../dsl/stubs/ExceptionThrowingEventHandler.java | 35 +
.../disruptor/dsl/stubs/SleepingEventHandler.java | 28 +
.../disruptor/dsl/stubs/StubExceptionHandler.java | 47 +
.../com/lmax/disruptor/dsl/stubs/StubExecutor.java | 78 ++
.../lmax/disruptor/dsl/stubs/StubPublisher.java | 53 +
.../lmax/disruptor/dsl/stubs/TestWorkHandler.java | 37 +
.../java/com/lmax/disruptor/support/Actions.java | 37 +
.../java/com/lmax/disruptor/support/LongEvent.java | 42 +
.../java/com/lmax/disruptor/support/StubEvent.java | 92 ++
.../java/com/lmax/disruptor/support/TestEvent.java | 35 +
.../com/lmax/disruptor/support/TestWaiter.java | 61 +
.../java/com/lmax/disruptor/util/UtilTest.java | 96 ++
150 files changed, 17364 insertions(+)
create mode 100644 .gitignore
create mode 100644 LICENCE.txt
create mode 100644 README.md
create mode 100644 build.gradle
create mode 100644 config/checkstyle/checkstyle.xml
create mode 100644 docs/Disruptor.docx
create mode 100644 gradle/wrapper/gradle-wrapper.properties
create mode 100755 gradlew
create mode 100644 settings.gradle
create mode 100644 src/main/java/com/lmax/disruptor/AbstractSequencer.java
create mode 100644 src/main/java/com/lmax/disruptor/AggregateEventHandler.java
create mode 100644 src/main/java/com/lmax/disruptor/AlertException.java
create mode 100644 src/main/java/com/lmax/disruptor/BatchEventProcessor.java
create mode 100644 src/main/java/com/lmax/disruptor/BlockingWaitStrategy.java
create mode 100644 src/main/java/com/lmax/disruptor/BusySpinWaitStrategy.java
create mode 100644 src/main/java/com/lmax/disruptor/Cursored.java
create mode 100644 src/main/java/com/lmax/disruptor/DataProvider.java
create mode 100644 src/main/java/com/lmax/disruptor/EventFactory.java
create mode 100644 src/main/java/com/lmax/disruptor/EventHandler.java
create mode 100644 src/main/java/com/lmax/disruptor/EventProcessor.java
create mode 100644 src/main/java/com/lmax/disruptor/EventReleaseAware.java
create mode 100644 src/main/java/com/lmax/disruptor/EventReleaser.java
create mode 100644 src/main/java/com/lmax/disruptor/EventTranslator.java
create mode 100644 src/main/java/com/lmax/disruptor/EventTranslatorOneArg.java
create mode 100644 src/main/java/com/lmax/disruptor/EventTranslatorThreeArg.java
create mode 100644 src/main/java/com/lmax/disruptor/EventTranslatorTwoArg.java
create mode 100644 src/main/java/com/lmax/disruptor/EventTranslatorVararg.java
create mode 100644 src/main/java/com/lmax/disruptor/ExceptionHandler.java
create mode 100644 src/main/java/com/lmax/disruptor/FatalExceptionHandler.java
create mode 100644 src/main/java/com/lmax/disruptor/FixedSequenceGroup.java
create mode 100644 src/main/java/com/lmax/disruptor/IgnoreExceptionHandler.java
create mode 100644 src/main/java/com/lmax/disruptor/InsufficientCapacityException.java
create mode 100644 src/main/java/com/lmax/disruptor/LifecycleAware.java
create mode 100644 src/main/java/com/lmax/disruptor/MultiProducerSequencer.java
create mode 100644 src/main/java/com/lmax/disruptor/NoOpEventProcessor.java
create mode 100644 src/main/java/com/lmax/disruptor/PhasedBackoffWaitStrategy.java
create mode 100644 src/main/java/com/lmax/disruptor/ProcessingSequenceBarrier.java
create mode 100644 src/main/java/com/lmax/disruptor/RingBuffer.java
create mode 100644 src/main/java/com/lmax/disruptor/Sequence.java
create mode 100644 src/main/java/com/lmax/disruptor/SequenceBarrier.java
create mode 100644 src/main/java/com/lmax/disruptor/SequenceGroup.java
create mode 100644 src/main/java/com/lmax/disruptor/SequenceGroups.java
create mode 100644 src/main/java/com/lmax/disruptor/SequenceReportingEventHandler.java
create mode 100644 src/main/java/com/lmax/disruptor/Sequencer.java
create mode 100644 src/main/java/com/lmax/disruptor/SingleProducerSequencer.java
create mode 100644 src/main/java/com/lmax/disruptor/SleepingWaitStrategy.java
create mode 100644 src/main/java/com/lmax/disruptor/TimeoutBlockingWaitStrategy.java
create mode 100644 src/main/java/com/lmax/disruptor/TimeoutException.java
create mode 100644 src/main/java/com/lmax/disruptor/TimeoutHandler.java
create mode 100644 src/main/java/com/lmax/disruptor/WaitStrategy.java
create mode 100644 src/main/java/com/lmax/disruptor/WorkHandler.java
create mode 100644 src/main/java/com/lmax/disruptor/WorkProcessor.java
create mode 100644 src/main/java/com/lmax/disruptor/WorkerPool.java
create mode 100644 src/main/java/com/lmax/disruptor/YieldingWaitStrategy.java
create mode 100644 src/main/java/com/lmax/disruptor/collections/Histogram.java
create mode 100644 src/main/java/com/lmax/disruptor/dsl/ConsumerInfo.java
create mode 100644 src/main/java/com/lmax/disruptor/dsl/ConsumerRepository.java
create mode 100644 src/main/java/com/lmax/disruptor/dsl/Disruptor.java
create mode 100644 src/main/java/com/lmax/disruptor/dsl/EventHandlerGroup.java
create mode 100644 src/main/java/com/lmax/disruptor/dsl/EventProcessorInfo.java
create mode 100644 src/main/java/com/lmax/disruptor/dsl/ExceptionHandlerSetting.java
create mode 100644 src/main/java/com/lmax/disruptor/dsl/ProducerType.java
create mode 100644 src/main/java/com/lmax/disruptor/dsl/WorkerPoolInfo.java
create mode 100644 src/main/java/com/lmax/disruptor/package.html
create mode 100644 src/main/java/com/lmax/disruptor/util/DaemonThreadFactory.java
create mode 100644 src/main/java/com/lmax/disruptor/util/MutableLong.java
create mode 100644 src/main/java/com/lmax/disruptor/util/PaddedLong.java
create mode 100644 src/main/java/com/lmax/disruptor/util/Util.java
create mode 100644 src/perftest/java/com/lmax/disruptor/AbstractPerfTestQueueVsDisruptor.java
create mode 100644 src/perftest/java/com/lmax/disruptor/DirectVsEventTranslatorWithByteArrayBenchmark.java
create mode 100644 src/perftest/java/com/lmax/disruptor/DirectVsEventTranslatorWithSingleLongBenchmark.java
create mode 100644 src/perftest/java/com/lmax/disruptor/OnePublisherToOneProcessorRawBatchThroughputTest.java
create mode 100644 src/perftest/java/com/lmax/disruptor/OnePublisherToOneProcessorRawThroughputTest.java
create mode 100644 src/perftest/java/com/lmax/disruptor/OnePublisherToOneProcessorUniCastThroughputTest.java
create mode 100644 src/perftest/java/com/lmax/disruptor/OnePublisherToThreeProcessorDiamondThroughputTest.java
create mode 100644 src/perftest/java/com/lmax/disruptor/OnePublisherToThreeProcessorMultiCastThroughputTest.java
create mode 100644 src/perftest/java/com/lmax/disruptor/OnePublisherToThreeProcessorPipelineThroughputTest.java
create mode 100644 src/perftest/java/com/lmax/disruptor/OnePublisherToThreeWorkerPoolThroughputReleasingTest.java
create mode 100644 src/perftest/java/com/lmax/disruptor/OnePublisherToThreeWorkerPoolThroughputTest.java
create mode 100644 src/perftest/java/com/lmax/disruptor/PingPongLatencyTest.java
create mode 100644 src/perftest/java/com/lmax/disruptor/ThreePublisherToOneProcessorSequencedThroughputTest.java
create mode 100644 src/perftest/java/com/lmax/disruptor/ThrottledOnePublisherToThreeProcessorPipelineLatencyTest.java
create mode 100644 src/perftest/java/com/lmax/disruptor/TwoPublisherToTwoProcessorWorkProcessorThroughputTest.java
create mode 100644 src/perftest/java/com/lmax/disruptor/ValueAdditionWorkHandler.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/EventCountingAndReleasingWorkHandler.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/EventCountingQueueProcessor.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/EventCountingWorkHandler.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/FizzBuzzEvent.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/FizzBuzzEventHandler.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/FizzBuzzQueueProcessor.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/FizzBuzzStep.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/FunctionEvent.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/FunctionEventHandler.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/FunctionQueueProcessor.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/FunctionStep.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/LatencyStepEventHandler.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/LatencyStepQueueProcessor.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/Operation.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/PerfTestUtil.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/ValueAdditionEventHandler.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/ValueAdditionQueueProcessor.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/ValueEvent.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/ValueMutationEventHandler.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/ValueMutationQueueProcessor.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/ValuePublisher.java
create mode 100644 src/perftest/java/com/lmax/disruptor/support/ValueQueuePublisher.java
create mode 100644 src/test/java/com/lmax/disruptor/AggregateEventHandlerTest.java
create mode 100644 src/test/java/com/lmax/disruptor/BatchEventProcessorTest.java
create mode 100644 src/test/java/com/lmax/disruptor/BusySpinWaitStrategyTest.java
create mode 100644 src/test/java/com/lmax/disruptor/DummySequenceBarrier.java
create mode 100644 src/test/java/com/lmax/disruptor/EventPublisherTest.java
create mode 100644 src/test/java/com/lmax/disruptor/EventTranslatorTest.java
create mode 100644 src/test/java/com/lmax/disruptor/FatalExceptionHandlerTest.java
create mode 100644 src/test/java/com/lmax/disruptor/FixedSequenceGroupTest.java
create mode 100644 src/test/java/com/lmax/disruptor/IgnoreExceptionHandlerTest.java
create mode 100644 src/test/java/com/lmax/disruptor/LifecycleAwareTest.java
create mode 100644 src/test/java/com/lmax/disruptor/MultiProducerSequencerTest.java
create mode 100644 src/test/java/com/lmax/disruptor/PhasedBackoffWaitStrategyTest.java
create mode 100644 src/test/java/com/lmax/disruptor/RingBufferTest.java
create mode 100644 src/test/java/com/lmax/disruptor/RingBufferWithMocksTest.java
create mode 100644 src/test/java/com/lmax/disruptor/SequenceBarrierTest.java
create mode 100644 src/test/java/com/lmax/disruptor/SequenceGroupTest.java
create mode 100644 src/test/java/com/lmax/disruptor/SequenceReportingCallbackTest.java
create mode 100644 src/test/java/com/lmax/disruptor/SequenceUpdater.java
create mode 100644 src/test/java/com/lmax/disruptor/SequencerTest.java
create mode 100644 src/test/java/com/lmax/disruptor/ShutdownOnFatalExceptionTest.java
create mode 100644 src/test/java/com/lmax/disruptor/SleepingWaitStrategyTest.java
create mode 100644 src/test/java/com/lmax/disruptor/TimeoutBlockingWaitStrategyTest.java
create mode 100644 src/test/java/com/lmax/disruptor/TortureTest.java
create mode 100644 src/test/java/com/lmax/disruptor/WaitStrategyTestUtil.java
create mode 100644 src/test/java/com/lmax/disruptor/WorkerPoolTest.java
create mode 100644 src/test/java/com/lmax/disruptor/YieldingWaitStrategyTest.java
create mode 100644 src/test/java/com/lmax/disruptor/collections/HistogramTest.java
create mode 100644 src/test/java/com/lmax/disruptor/dsl/ConsumerRepositoryTest.java
create mode 100644 src/test/java/com/lmax/disruptor/dsl/DisruptorTest.java
create mode 100644 src/test/java/com/lmax/disruptor/dsl/stubs/DelayedEventHandler.java
create mode 100644 src/test/java/com/lmax/disruptor/dsl/stubs/EventHandlerStub.java
create mode 100644 src/test/java/com/lmax/disruptor/dsl/stubs/EvilEqualsEventHandler.java
create mode 100644 src/test/java/com/lmax/disruptor/dsl/stubs/ExceptionThrowingEventHandler.java
create mode 100644 src/test/java/com/lmax/disruptor/dsl/stubs/SleepingEventHandler.java
create mode 100644 src/test/java/com/lmax/disruptor/dsl/stubs/StubExceptionHandler.java
create mode 100644 src/test/java/com/lmax/disruptor/dsl/stubs/StubExecutor.java
create mode 100644 src/test/java/com/lmax/disruptor/dsl/stubs/StubPublisher.java
create mode 100644 src/test/java/com/lmax/disruptor/dsl/stubs/TestWorkHandler.java
create mode 100644 src/test/java/com/lmax/disruptor/support/Actions.java
create mode 100644 src/test/java/com/lmax/disruptor/support/LongEvent.java
create mode 100644 src/test/java/com/lmax/disruptor/support/StubEvent.java
create mode 100644 src/test/java/com/lmax/disruptor/support/TestEvent.java
create mode 100644 src/test/java/com/lmax/disruptor/support/TestWaiter.java
create mode 100644 src/test/java/com/lmax/disruptor/util/UtilTest.java
--
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