Dejwi
Dejwi

Reputation: 4487

The simplest and actual example code of LMAX Disruptor

I wish I can get the simplest possible example code, which will show how to use LMAX disruptor(http://code.google.com/p/disruptor/).

Unfortunately every piece of code is out of date. Does someone know, where can I found small and up to date howto (preferable without DSL)?

Upvotes: 17

Views: 28474

Answers (3)

user1563700
user1563700

Reputation:

There is an official sample application on github now: Getting-Started

Upvotes: 12

Trevor Bernard
Trevor Bernard

Reputation: 992

Here is a simple, runnable, example of how to use the Disruptor library. Example is written in Java using version 2.10.4 of the Disruptor library.

https://github.com/trevorbernard/disruptor-examples

Upvotes: 22

weima
weima

Reputation: 4912

you can see the example here.

http://code.google.com/p/disruptor/wiki/CodeExampleDisruptor2x

I have done a simple example by using the above wiki. hope this helps you.

Upvotes: 15

Related Questions